Skip to content

Commit 6e2347b

Browse files
authored
Update Token API MCP URL (#986)
1 parent 16dfb15 commit 6e2347b

File tree

110 files changed

+176
-176
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+176
-176
lines changed

website/src/pages/ar/resources/claude-mcp.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Replace the contents of the existing config file with:
4242
"mcpServers": {
4343
"token-api": {
4444
"command": "npx",
45-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
45+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.mcp.thegraph.com/sse"],
4646
"env": {
4747
"ACCESS_TOKEN": "ACCESS_TOKEN"
4848
}

website/src/pages/ar/token-api/faq.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ While recommended, `Accept: application/json` isn't strictly required as the API
9898

9999
### MCP integration with Claude/Cline/Cursor shows errors like "ENOENT" or "Server disconnected". How do I fix this?
100100

101-
For "ENOENT" errors, ensure Node.js 18+ is installed and the path to `npx`/`bunx` is correct (consider using full paths in config). "Server disconnected" usually indicates authentication or connectivity issues – verify your `ACCESS_TOKEN` is set correctly and your network allows access to `https://token-api.thegraph.com/sse`.
101+
For "ENOENT" errors, ensure Node.js 18+ is installed and the path to `npx`/`bunx` is correct (consider using full paths in config). "Server disconnected" usually indicates authentication or connectivity issues – verify your `ACCESS_TOKEN` is set correctly and your network allows access to `https://token-api.mcp.thegraph.com/sse`.
102102

103103
### Is the Token API part of The Graph's GraphQL service?
104104

website/src/pages/ar/token-api/mcp/claude.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Create or edit your `claude_desktop_config.json` file.
2727
"mcpServers": {
2828
"token-api": {
2929
"command": "npx",
30-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
30+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.mcp.thegraph.com/sse"],
3131
"env": {
3232
"ACCESS_TOKEN": "<https://thegraph.market JWT Access Token>"
3333
}
@@ -53,6 +53,6 @@ Try to use the full path of the command instead:
5353

5454
![Connection error notification in Claude Desktop displaying 'Server disconnected' message.](/img/claude-server-disconnect.png)
5555

56-
Double-check your API key otherwise look in your navigator if `https://token-api.thegraph.com/sse` is reachable.
56+
Double-check your API key otherwise look in your navigator if `https://token-api.mcp.thegraph.com/sse` is reachable.
5757

5858
> You can always have a look at the full logs under `Claude/logs/mcp.log` and `Claude/logs/mcp-server-pinax.log` for more details.

website/src/pages/ar/token-api/mcp/cline.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Create or edit your `cline_mcp_settings.json` file.
2323
"mcpServers": {
2424
"mcp-pinax": {
2525
"command": "npx",
26-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
26+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.mcp.thegraph.com/sse"],
2727
"env": {
2828
"ACCESS_TOKEN": "<JWT Token from thegraph.market>"
2929
}
@@ -49,4 +49,4 @@ Try to use the full path of the command instead:
4949

5050
![Cline connection error notification displaying server disconnection warning.](/img/cline-missing-variables.png)
5151

52-
Double-check your API key otherwise look in your navigator if `https://token-api.thegraph.com/sse` is reachable.
52+
Double-check your API key otherwise look in your navigator if `https://token-api.mcp.thegraph.com/sse` is reachable.

website/src/pages/ar/token-api/mcp/cursor.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Create or edit your `~/.cursor/mcp.json` file.
2323
"mcpServers": {
2424
"mcp-pinax": {
2525
"command": "npx",
26-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
26+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.mcp.thegraph.com/sse"],
2727
"env": {
2828
"ACCESS_TOKEN": "<JWT Token from thegraph.market>"
2929
}
@@ -47,4 +47,4 @@ Try to use the full path of the command instead:
4747

4848
### Server disconnected
4949

50-
Double-check your API key otherwise look in your navigator if `https://token-api.thegraph.com/sse` is reachable.
50+
Double-check your API key otherwise look in your navigator if `https://token-api.mcp.thegraph.com/sse` is reachable.

website/src/pages/cs/resources/claude-mcp.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Replace the contents of the existing config file with:
4242
"mcpServers": {
4343
"token-api": {
4444
"command": "npx",
45-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
45+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.mcp.thegraph.com/sse"],
4646
"env": {
4747
"ACCESS_TOKEN": "ACCESS_TOKEN"
4848
}

website/src/pages/cs/token-api/faq.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ While recommended, `Accept: application/json` isn't strictly required as the API
9898

9999
### MCP integration with Claude/Cline/Cursor shows errors like "ENOENT" or "Server disconnected". How do I fix this?
100100

101-
For "ENOENT" errors, ensure Node.js 18+ is installed and the path to `npx`/`bunx` is correct (consider using full paths in config). "Server disconnected" usually indicates authentication or connectivity issues – verify your `ACCESS_TOKEN` is set correctly and your network allows access to `https://token-api.thegraph.com/sse`.
101+
For "ENOENT" errors, ensure Node.js 18+ is installed and the path to `npx`/`bunx` is correct (consider using full paths in config). "Server disconnected" usually indicates authentication or connectivity issues – verify your `ACCESS_TOKEN` is set correctly and your network allows access to `https://token-api.mcp.thegraph.com/sse`.
102102

103103
### Is the Token API part of The Graph's GraphQL service?
104104

website/src/pages/cs/token-api/mcp/claude.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Create or edit your `claude_desktop_config.json` file.
2727
"mcpServers": {
2828
"token-api": {
2929
"command": "npx",
30-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
30+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.mcp.thegraph.com/sse"],
3131
"env": {
3232
"ACCESS_TOKEN": "<https://thegraph.market JWT Access Token>"
3333
}
@@ -53,6 +53,6 @@ Try to use the full path of the command instead:
5353

5454
![Connection error notification in Claude Desktop displaying 'Server disconnected' message.](/img/claude-server-disconnect.png)
5555

56-
Double-check your API key otherwise look in your navigator if `https://token-api.thegraph.com/sse` is reachable.
56+
Double-check your API key otherwise look in your navigator if `https://token-api.mcp.thegraph.com/sse` is reachable.
5757

5858
> You can always have a look at the full logs under `Claude/logs/mcp.log` and `Claude/logs/mcp-server-pinax.log` for more details.

website/src/pages/cs/token-api/mcp/cline.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Create or edit your `cline_mcp_settings.json` file.
2323
"mcpServers": {
2424
"mcp-pinax": {
2525
"command": "npx",
26-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
26+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.mcp.thegraph.com/sse"],
2727
"env": {
2828
"ACCESS_TOKEN": "<JWT Token from thegraph.market>"
2929
}
@@ -49,4 +49,4 @@ Try to use the full path of the command instead:
4949

5050
![Cline connection error notification displaying server disconnection warning.](/img/cline-missing-variables.png)
5151

52-
Double-check your API key otherwise look in your navigator if `https://token-api.thegraph.com/sse` is reachable.
52+
Double-check your API key otherwise look in your navigator if `https://token-api.mcp.thegraph.com/sse` is reachable.

website/src/pages/cs/token-api/mcp/cursor.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Create or edit your `~/.cursor/mcp.json` file.
2323
"mcpServers": {
2424
"mcp-pinax": {
2525
"command": "npx",
26-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
26+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.mcp.thegraph.com/sse"],
2727
"env": {
2828
"ACCESS_TOKEN": "<JWT Token from thegraph.market>"
2929
}
@@ -47,4 +47,4 @@ Try to use the full path of the command instead:
4747

4848
### Server disconnected
4949

50-
Double-check your API key otherwise look in your navigator if `https://token-api.thegraph.com/sse` is reachable.
50+
Double-check your API key otherwise look in your navigator if `https://token-api.mcp.thegraph.com/sse` is reachable.

website/src/pages/de/resources/claude-mcp.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Replace the contents of the existing config file with:
4242
"mcpServers": {
4343
"token-api": {
4444
"command": "npx",
45-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
45+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.mcp.thegraph.com/sse"],
4646
"env": {
4747
"ACCESS_TOKEN": "ACCESS_TOKEN"
4848
}

website/src/pages/de/token-api/faq.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ While recommended, `Accept: application/json` isn't strictly required as the API
9898

9999
### MCP integration with Claude/Cline/Cursor shows errors like "ENOENT" or "Server disconnected". How do I fix this?
100100

101-
For "ENOENT" errors, ensure Node.js 18+ is installed and the path to `npx`/`bunx` is correct (consider using full paths in config). "Server disconnected" usually indicates authentication or connectivity issues – verify your `ACCESS_TOKEN` is set correctly and your network allows access to `https://token-api.thegraph.com/sse`.
101+
For "ENOENT" errors, ensure Node.js 18+ is installed and the path to `npx`/`bunx` is correct (consider using full paths in config). "Server disconnected" usually indicates authentication or connectivity issues – verify your `ACCESS_TOKEN` is set correctly and your network allows access to `https://token-api.mcp.thegraph.com/sse`.
102102

103103
### Is the Token API part of The Graph's GraphQL service?
104104

website/src/pages/de/token-api/mcp/claude.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Create or edit your `claude_desktop_config.json` file.
2727
"mcpServers": {
2828
"token-api": {
2929
"command": "npx",
30-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
30+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.mcp.thegraph.com/sse"],
3131
"env": {
3232
"ACCESS_TOKEN": "<https://thegraph.market JWT Access Token>"
3333
}
@@ -53,6 +53,6 @@ Try to use the full path of the command instead:
5353

5454
![Connection error notification in Claude Desktop displaying 'Server disconnected' message.](/img/claude-server-disconnect.png)
5555

56-
Double-check your API key otherwise look in your navigator if `https://token-api.thegraph.com/sse` is reachable.
56+
Double-check your API key otherwise look in your navigator if `https://token-api.mcp.thegraph.com/sse` is reachable.
5757

5858
> You can always have a look at the full logs under `Claude/logs/mcp.log` and `Claude/logs/mcp-server-pinax.log` for more details.

website/src/pages/de/token-api/mcp/cline.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Create or edit your `cline_mcp_settings.json` file.
2323
"mcpServers": {
2424
"mcp-pinax": {
2525
"command": "npx",
26-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
26+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.mcp.thegraph.com/sse"],
2727
"env": {
2828
"ACCESS_TOKEN": "<JWT Token from thegraph.market>"
2929
}
@@ -49,4 +49,4 @@ Try to use the full path of the command instead:
4949

5050
![Cline connection error notification displaying server disconnection warning.](/img/cline-missing-variables.png)
5151

52-
Double-check your API key otherwise look in your navigator if `https://token-api.thegraph.com/sse` is reachable.
52+
Double-check your API key otherwise look in your navigator if `https://token-api.mcp.thegraph.com/sse` is reachable.

website/src/pages/de/token-api/mcp/cursor.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Create or edit your `~/.cursor/mcp.json` file.
2323
"mcpServers": {
2424
"mcp-pinax": {
2525
"command": "npx",
26-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
26+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.mcp.thegraph.com/sse"],
2727
"env": {
2828
"ACCESS_TOKEN": "<JWT Token from thegraph.market>"
2929
}
@@ -47,4 +47,4 @@ Try to use the full path of the command instead:
4747

4848
### Server disconnected
4949

50-
Double-check your API key otherwise look in your navigator if `https://token-api.thegraph.com/sse` is reachable.
50+
Double-check your API key otherwise look in your navigator if `https://token-api.mcp.thegraph.com/sse` is reachable.

website/src/pages/en/resources/claude-mcp.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Replace the contents of the existing config file with:
4242
"mcpServers": {
4343
"token-api": {
4444
"command": "npx",
45-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
45+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.mcp.thegraph.com/sse"],
4646
"env": {
4747
"ACCESS_TOKEN": "ACCESS_TOKEN"
4848
}

website/src/pages/en/token-api/faq.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ While recommended, `Accept: application/json` isn't strictly required as the API
122122

123123
### MCP integration with Claude/Cline/Cursor shows errors like "ENOENT" or "Server disconnected". How do I fix this?
124124

125-
For "ENOENT" errors, ensure Node.js 18+ is installed and the path to `npx`/`bunx` is correct (consider using full paths in config). "Server disconnected" usually indicates authentication or connectivity issues – verify your `ACCESS_TOKEN` is set correctly and your network allows access to `https://token-api.thegraph.com/sse`.
125+
For "ENOENT" errors, ensure Node.js 18+ is installed and the path to `npx`/`bunx` is correct (consider using full paths in config). "Server disconnected" usually indicates authentication or connectivity issues – verify your `ACCESS_TOKEN` is set correctly and your network allows access to `https://token-api.mcp.thegraph.com/sse`.
126126

127127
### Is the Token API part of The Graph's GraphQL service?
128128

website/src/pages/en/token-api/mcp/claude.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Create or edit your `claude_desktop_config.json` file.
2727
"mcpServers": {
2828
"token-api": {
2929
"command": "npx",
30-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
30+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.mcp.thegraph.com/sse"],
3131
"env": {
3232
"ACCESS_TOKEN": "<https://thegraph.market JWT Access Token>"
3333
}
@@ -53,6 +53,6 @@ Try to use the full path of the command instead:
5353

5454
![Connection error notification in Claude Desktop displaying 'Server disconnected' message.](/img/claude-server-disconnect.png)
5555

56-
Double-check your API key otherwise look in your navigator if `https://token-api.thegraph.com/sse` is reachable.
56+
Double-check your API key otherwise look in your navigator if `https://token-api.mcp.thegraph.com/sse` is reachable.
5757

5858
> You can always have a look at the full logs under `Claude/logs/mcp.log` and `Claude/logs/mcp-server-pinax.log` for more details.

website/src/pages/en/token-api/mcp/cline.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Create or edit your `cline_mcp_settings.json` file.
2323
"mcpServers": {
2424
"mcp-pinax": {
2525
"command": "npx",
26-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
26+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.mcp.thegraph.com/sse"],
2727
"env": {
2828
"ACCESS_TOKEN": "<JWT Token from thegraph.market>"
2929
}
@@ -49,4 +49,4 @@ Try to use the full path of the command instead:
4949

5050
![Cline connection error notification displaying server disconnection warning.](/img/cline-missing-variables.png)
5151

52-
Double-check your API key otherwise look in your navigator if `https://token-api.thegraph.com/sse` is reachable.
52+
Double-check your API key otherwise look in your navigator if `https://token-api.mcp.thegraph.com/sse` is reachable.

website/src/pages/en/token-api/mcp/cursor.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Create or edit your `~/.cursor/mcp.json` file.
2323
"mcpServers": {
2424
"mcp-pinax": {
2525
"command": "npx",
26-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
26+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.mcp.thegraph.com/sse"],
2727
"env": {
2828
"ACCESS_TOKEN": "<JWT Token from thegraph.market>"
2929
}
@@ -47,4 +47,4 @@ Try to use the full path of the command instead:
4747

4848
### Server disconnected
4949

50-
Double-check your API key otherwise look in your navigator if `https://token-api.thegraph.com/sse` is reachable.
50+
Double-check your API key otherwise look in your navigator if `https://token-api.mcp.thegraph.com/sse` is reachable.

website/src/pages/es/resources/claude-mcp.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Replace the contents of the existing config file with:
4242
"mcpServers": {
4343
"token-api": {
4444
"command": "npx",
45-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
45+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.mcp.thegraph.com/sse"],
4646
"env": {
4747
"ACCESS_TOKEN": "ACCESS_TOKEN"
4848
}

website/src/pages/es/token-api/faq.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ While recommended, `Accept: application/json` isn't strictly required as the API
9898

9999
### MCP integration with Claude/Cline/Cursor shows errors like "ENOENT" or "Server disconnected". How do I fix this?
100100

101-
For "ENOENT" errors, ensure Node.js 18+ is installed and the path to `npx`/`bunx` is correct (consider using full paths in config). "Server disconnected" usually indicates authentication or connectivity issues – verify your `ACCESS_TOKEN` is set correctly and your network allows access to `https://token-api.thegraph.com/sse`.
101+
For "ENOENT" errors, ensure Node.js 18+ is installed and the path to `npx`/`bunx` is correct (consider using full paths in config). "Server disconnected" usually indicates authentication or connectivity issues – verify your `ACCESS_TOKEN` is set correctly and your network allows access to `https://token-api.mcp.thegraph.com/sse`.
102102

103103
### Is the Token API part of The Graph's GraphQL service?
104104

website/src/pages/es/token-api/mcp/claude.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Create or edit your `claude_desktop_config.json` file.
2727
"mcpServers": {
2828
"token-api": {
2929
"command": "npx",
30-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
30+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.mcp.thegraph.com/sse"],
3131
"env": {
3232
"ACCESS_TOKEN": "<https://thegraph.market JWT Access Token>"
3333
}
@@ -53,6 +53,6 @@ Try to use the full path of the command instead:
5353

5454
![Connection error notification in Claude Desktop displaying 'Server disconnected' message.](/img/claude-server-disconnect.png)
5555

56-
Double-check your API key otherwise look in your navigator if `https://token-api.thegraph.com/sse` is reachable.
56+
Double-check your API key otherwise look in your navigator if `https://token-api.mcp.thegraph.com/sse` is reachable.
5757

5858
> You can always have a look at the full logs under `Claude/logs/mcp.log` and `Claude/logs/mcp-server-pinax.log` for more details.

website/src/pages/es/token-api/mcp/cline.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Create or edit your `cline_mcp_settings.json` file.
2323
"mcpServers": {
2424
"mcp-pinax": {
2525
"command": "npx",
26-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
26+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.mcp.thegraph.com/sse"],
2727
"env": {
2828
"ACCESS_TOKEN": "<JWT Token from thegraph.market>"
2929
}
@@ -49,4 +49,4 @@ Try to use the full path of the command instead:
4949

5050
![Cline connection error notification displaying server disconnection warning.](/img/cline-missing-variables.png)
5151

52-
Double-check your API key otherwise look in your navigator if `https://token-api.thegraph.com/sse` is reachable.
52+
Double-check your API key otherwise look in your navigator if `https://token-api.mcp.thegraph.com/sse` is reachable.

website/src/pages/es/token-api/mcp/cursor.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Create or edit your `~/.cursor/mcp.json` file.
2323
"mcpServers": {
2424
"mcp-pinax": {
2525
"command": "npx",
26-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
26+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.mcp.thegraph.com/sse"],
2727
"env": {
2828
"ACCESS_TOKEN": "<JWT Token from thegraph.market>"
2929
}
@@ -47,4 +47,4 @@ Try to use the full path of the command instead:
4747

4848
### Server disconnected
4949

50-
Double-check your API key otherwise look in your navigator if `https://token-api.thegraph.com/sse` is reachable.
50+
Double-check your API key otherwise look in your navigator if `https://token-api.mcp.thegraph.com/sse` is reachable.

website/src/pages/fr/resources/claude-mcp.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Replace the contents of the existing config file with:
4242
"mcpServers": {
4343
"token-api": {
4444
"command": "npx",
45-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
45+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.mcp.thegraph.com/sse"],
4646
"env": {
4747
"ACCESS_TOKEN": "ACCESS_TOKEN"
4848
}

website/src/pages/fr/token-api/faq.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ While recommended, `Accept: application/json` isn't strictly required as the API
9898

9999
### MCP integration with Claude/Cline/Cursor shows errors like "ENOENT" or "Server disconnected". How do I fix this?
100100

101-
For "ENOENT" errors, ensure Node.js 18+ is installed and the path to `npx`/`bunx` is correct (consider using full paths in config). "Server disconnected" usually indicates authentication or connectivity issues – verify your `ACCESS_TOKEN` is set correctly and your network allows access to `https://token-api.thegraph.com/sse`.
101+
For "ENOENT" errors, ensure Node.js 18+ is installed and the path to `npx`/`bunx` is correct (consider using full paths in config). "Server disconnected" usually indicates authentication or connectivity issues – verify your `ACCESS_TOKEN` is set correctly and your network allows access to `https://token-api.mcp.thegraph.com/sse`.
102102

103103
### Is the Token API part of The Graph's GraphQL service?
104104

0 commit comments

Comments
 (0)