Skip to content

Commit 2194697

Browse files
authored
Merge pull request #757 from bnb-chain/update/lucas/mcp
fix: mcp endpoint
2 parents 4ed864c + f771e36 commit 2194697

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

docs/showcase/mcp/ask-ai-to-ide.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ Follow these steps to wire any IDE that supports the **Model Context Protocol (M
2222
{
2323
"mcpServers": {
2424
"bnbchain-askai-mcp": {
25-
"url": "https://mcp.inkeep.com/bnbchainorg/mcp",
26-
"id": "cm9qsf01p00bss6016ry68oil"
25+
"url": "https://api.superintern.ai/agent/async/mcp/mcp"
2726
}
2827
}
2928
}
@@ -71,7 +70,7 @@ For quick tests outside the IDE you can hit the endpoint directly:
7170
curl -s -X POST \
7271
-H "Content-Type: application/json" \
7372
-d '{"query":"What is BEP‑20?"}' \
74-
https://mcp.inkeep.com/bnbchainorg/mcp
73+
https://api.superintern.ai/agent/async/mcp/mcp
7574
```
7675

7776
You’ll receive a JSON response containing an `answer` field and `sources` array.

docs/showcase/mcp/ask-ai-vs-code-guide.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@ The extension adds MCP support to VS Code, letting you connect to external know
2222
2. Inside the JSON, locate (or create) the **`"mcpServers"`** section and paste the snippet below as a sibling property.
2323

2424
```jsonc
25-
"mcpServers": {
26-
"bnbchain-askai-mcp": {
27-
"url": "https://mcp.inkeep.com/bnbchainorg/mcp",
28-
"id": "cm9qsf01p00bss6016ry68oil"
25+
{
26+
"mcpServers": {
27+
"bnbchain-askai-mcp": {
28+
"url": "https://api.superintern.ai/agent/async/mcp/mcp"
29+
}
2930
}
3031
}
3132
```

docs/showcase/mcp/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The **Model Context Protocol** is an open interface that lets AI agents and deve
2222
| Name | Endpoint / Install | Scope | Typical usage |
2323
| ------------------------------------------------------------- | ------------------------------------------------------- | ----------------------------------------------------------------- | ------------------------------------------------------------------- |
2424
| [**bnbchain‑mcp**](https://github.com/bnb-chain/bnbchain-mcp) | `npx @bnb-chain/mcp@latest`<br/>or self-host via Docker | Full toolkit: blocks, txs, wallets, Greenfield ops & more | Build, test, or automate on-chain actions from your IDE or scripts. |
25-
| [**ask‑ai‑mcp**](./docs/showcase/mcp/ask-ai-to-ide.md) | `https://mcp.inkeep.com/bnbchainorg/mcp` | Read-only semantic search over BNB Chain docs, BEPs, blogs & FAQs | Quick answers in chat panes or command palettes. |
25+
| [**ask‑ai‑mcp**](./docs/showcase/mcp/ask-ai-to-ide.md) | `https://api.superintern.ai/agent/async/mcp/mcp` | Read-only semantic search over BNB Chain docs, BEPs, blogs & FAQs | Quick answers in chat panes or command palettes. |
2626

2727
Both servers speak the *same* MCP schema, so you can swap them in your settings with a single JSON change.
2828

0 commit comments

Comments
 (0)