Skip to content

Commit 95b0d60

Browse files
committed
More token-api.service.pinax.network => token-api.thegraph.com replacements
1 parent 3ed272e commit 95b0d60

Some content is hidden

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

87 files changed

+195
-195
lines changed

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
"mcp-pinax": {
2929
"command": "npx",
30-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.service.pinax.network/sse"],
30+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
3131
"env": {
3232
"ACCESS_TOKEN": "<JWT Token from thegraph.market>"
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.service.pinax.network/sse` is reachable.
56+
Double-check your API key otherwise look in your navigator if `https://token-api.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.service.pinax.network/sse"],
26+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.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.service.pinax.network/sse` is reachable.
52+
Double-check your API key otherwise look in your navigator if `https://token-api.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.service.pinax.network/sse"],
26+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.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.service.pinax.network/sse` is reachable.
50+
Double-check your API key otherwise look in your navigator if `https://token-api.thegraph.com/sse` is reachable.

website/src/pages/ar/token-api/quick-start.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const options = {
4141
},
4242
}
4343

44-
fetch(`https://token-api.service.pinax.network/balances/evm/${address}`, options)
44+
fetch(`https://token-api.thegraph.com/balances/evm/${address}`, options)
4545
.then((response) => response.json())
4646
.then((response) => console.log(response))
4747
.catch((err) => console.error(err))
@@ -55,7 +55,7 @@ To make an API request using **cURL**, open your command line and run the follow
5555

5656
```curl
5757
curl --request GET \
58-
--url https://token-api.service.pinax.network/balances/evm/0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208 \
58+
--url https://token-api.thegraph.com/balances/evm/0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208 \
5959
--header 'Accept: application/json' \
6060
--header 'Authorization: Bearer <token>'
6161
```
@@ -69,7 +69,7 @@ Make sure to replace `<token>` with the JWT Token generated from your API key.
6969
If the API call fails, try printing out the full response object for additional error details. For example:
7070

7171
```js label="index.js"
72-
fetch(`https://token-api.service.pinax.network/balances/evm/${address}`, options)
72+
fetch(`https://token-api.thegraph.com/balances/evm/${address}`, options)
7373
.then((response) => {
7474
console.log('Status Code:', response.status)
7575
return response.json()

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
"mcp-pinax": {
2929
"command": "npx",
30-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.service.pinax.network/sse"],
30+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
3131
"env": {
3232
"ACCESS_TOKEN": "<JWT Token from thegraph.market>"
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.service.pinax.network/sse` is reachable.
56+
Double-check your API key otherwise look in your navigator if `https://token-api.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.service.pinax.network/sse"],
26+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.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.service.pinax.network/sse` is reachable.
52+
Double-check your API key otherwise look in your navigator if `https://token-api.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.service.pinax.network/sse"],
26+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.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.service.pinax.network/sse` is reachable.
50+
Double-check your API key otherwise look in your navigator if `https://token-api.thegraph.com/sse` is reachable.

website/src/pages/cs/token-api/quick-start.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const options = {
4141
},
4242
}
4343

44-
fetch(`https://token-api.service.pinax.network/balances/evm/${address}`, options)
44+
fetch(`https://token-api.thegraph.com/balances/evm/${address}`, options)
4545
.then((response) => response.json())
4646
.then((response) => console.log(response))
4747
.catch((err) => console.error(err))
@@ -55,7 +55,7 @@ To make an API request using **cURL**, open your command line and run the follow
5555

5656
```curl
5757
curl --request GET \
58-
--url https://token-api.service.pinax.network/balances/evm/0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208 \
58+
--url https://token-api.thegraph.com/balances/evm/0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208 \
5959
--header 'Accept: application/json' \
6060
--header 'Authorization: Bearer <token>'
6161
```
@@ -69,7 +69,7 @@ Make sure to replace `<token>` with the JWT Token generated from your API key.
6969
If the API call fails, try printing out the full response object for additional error details. For example:
7070

7171
```js label="index.js"
72-
fetch(`https://token-api.service.pinax.network/balances/evm/${address}`, options)
72+
fetch(`https://token-api.thegraph.com/balances/evm/${address}`, options)
7373
.then((response) => {
7474
console.log('Status Code:', response.status)
7575
return response.json()

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
"mcp-pinax": {
2929
"command": "npx",
30-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.service.pinax.network/sse"],
30+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
3131
"env": {
3232
"ACCESS_TOKEN": "<JWT Token from thegraph.market>"
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.service.pinax.network/sse` is reachable.
56+
Double-check your API key otherwise look in your navigator if `https://token-api.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.service.pinax.network/sse"],
26+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.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.service.pinax.network/sse` is reachable.
52+
Double-check your API key otherwise look in your navigator if `https://token-api.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.service.pinax.network/sse"],
26+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.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.service.pinax.network/sse` is reachable.
50+
Double-check your API key otherwise look in your navigator if `https://token-api.thegraph.com/sse` is reachable.

website/src/pages/de/token-api/quick-start.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const options = {
4141
},
4242
}
4343

44-
fetch(`https://token-api.service.pinax.network/balances/evm/${address}`, options)
44+
fetch(`https://token-api.thegraph.com/balances/evm/${address}`, options)
4545
.then((response) => response.json())
4646
.then((response) => console.log(response))
4747
.catch((err) => console.error(err))
@@ -55,7 +55,7 @@ To make an API request using **cURL**, open your command line and run the follow
5555

5656
```curl
5757
curl --request GET \
58-
--url https://token-api.service.pinax.network/balances/evm/0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208 \
58+
--url https://token-api.thegraph.com/balances/evm/0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208 \
5959
--header 'Accept: application/json' \
6060
--header 'Authorization: Bearer <token>'
6161
```
@@ -69,7 +69,7 @@ Make sure to replace `<token>` with the JWT Token generated from your API key.
6969
If the API call fails, try printing out the full response object for additional error details. For example:
7070

7171
```js label="index.js"
72-
fetch(`https://token-api.service.pinax.network/balances/evm/${address}`, options)
72+
fetch(`https://token-api.thegraph.com/balances/evm/${address}`, options)
7373
.then((response) => {
7474
console.log('Status Code:', response.status)
7575
return response.json()

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
"mcp-pinax": {
2929
"command": "npx",
30-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.service.pinax.network/sse"],
30+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
3131
"env": {
3232
"ACCESS_TOKEN": "<JWT Token from thegraph.market>"
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.service.pinax.network/sse` is reachable.
56+
Double-check your API key otherwise look in your navigator if `https://token-api.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.service.pinax.network/sse"],
26+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.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.service.pinax.network/sse` is reachable.
52+
Double-check your API key otherwise look in your navigator if `https://token-api.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.service.pinax.network/sse"],
26+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.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.service.pinax.network/sse` is reachable.
50+
Double-check your API key otherwise look in your navigator if `https://token-api.thegraph.com/sse` is reachable.

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
"mcp-pinax": {
2929
"command": "npx",
30-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.service.pinax.network/sse"],
30+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
3131
"env": {
3232
"ACCESS_TOKEN": "<JWT Token from thegraph.market>"
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.service.pinax.network/sse` is reachable.
56+
Double-check your API key otherwise look in your navigator if `https://token-api.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.service.pinax.network/sse"],
26+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.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.service.pinax.network/sse` is reachable.
52+
Double-check your API key otherwise look in your navigator if `https://token-api.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.service.pinax.network/sse"],
26+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.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.service.pinax.network/sse` is reachable.
50+
Double-check your API key otherwise look in your navigator if `https://token-api.thegraph.com/sse` is reachable.

website/src/pages/es/token-api/quick-start.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const options = {
4141
},
4242
}
4343

44-
fetch(`https://token-api.service.pinax.network/balances/evm/${address}`, options)
44+
fetch(`https://token-api.thegraph.com/balances/evm/${address}`, options)
4545
.then((response) => response.json())
4646
.then((response) => console.log(response))
4747
.catch((err) => console.error(err))
@@ -55,7 +55,7 @@ To make an API request using **cURL**, open your command line and run the follow
5555

5656
```curl
5757
curl --request GET \
58-
--url https://token-api.service.pinax.network/balances/evm/0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208 \
58+
--url https://token-api.thegraph.com/balances/evm/0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208 \
5959
--header 'Accept: application/json' \
6060
--header 'Authorization: Bearer <token>'
6161
```
@@ -69,7 +69,7 @@ Make sure to replace `<token>` with the JWT Token generated from your API key.
6969
If the API call fails, try printing out the full response object for additional error details. For example:
7070

7171
```js label="index.js"
72-
fetch(`https://token-api.service.pinax.network/balances/evm/${address}`, options)
72+
fetch(`https://token-api.thegraph.com/balances/evm/${address}`, options)
7373
.then((response) => {
7474
console.log('Status Code:', response.status)
7575
return response.json()

website/src/pages/fr/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
"mcp-pinax": {
2929
"command": "npx",
30-
"args": ["@pinax/mcp", "--sse-url", "https://token-api.service.pinax.network/sse"],
30+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.thegraph.com/sse"],
3131
"env": {
3232
"ACCESS_TOKEN": "<JWT Token from thegraph.market>"
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.service.pinax.network/sse` is reachable.
56+
Double-check your API key otherwise look in your navigator if `https://token-api.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/fr/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.service.pinax.network/sse"],
26+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.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.service.pinax.network/sse` is reachable.
52+
Double-check your API key otherwise look in your navigator if `https://token-api.thegraph.com/sse` is reachable.

website/src/pages/fr/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.service.pinax.network/sse"],
26+
"args": ["@pinax/mcp", "--sse-url", "https://token-api.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.service.pinax.network/sse` is reachable.
50+
Double-check your API key otherwise look in your navigator if `https://token-api.thegraph.com/sse` is reachable.

0 commit comments

Comments
 (0)