For the complete documentation index, see llms.txt. This page is also available as Markdown.

KUB Docs MCP

Use this MCP server URL for the public KUB Docs:

https://docs.kubchain.com/~gitbook/mcp

Opening the MCP URL in a browser returns an error. Add it to an AI tool or IDE that supports HTTP MCP servers.

Add the server to your tool

1

Copy the MCP server URL

Copy https://docs.kubchain.com/~gitbook/mcp.

2

Add it to your AI tool

Choose your tool below and add the URL as an HTTP MCP server.

3

Test the connection

Ask a question from the Prompt Examples section below. The tool should search KUB Docs and cite its answer.

These steps work in Claude on the web and Claude Desktop.

  1. Open Settings > Connectors.

  2. Select Add custom connector.

  3. Paste https://docs.kubchain.com/~gitbook/mcp.

If remote connectors are unavailable, your plan may not support them yet.

Run the following command:

claude mcp add --transport http kub-docs https://docs.kubchain.com/~gitbook/mcp

Open Settings > MCP, then select Add new MCP server.

Use https://docs.kubchain.com/~gitbook/mcp o or add this to .cursor/mcp.json:

{
  "mcpServers": {
    "kub-docs": {
      "url": "https://docs.kubchain.com/~gitbook/mcp"
    }
  }
}

Add the server from your terminal:

codex mcp add kub-docs https://docs.kubchain.com/~gitbook/mcp

Or add it to config.toml:

[mcp_servers.kub-docs]
url = "https://docs.kubchain.com/~gitbook/mcp"

Open your mcp.json file and add:

Prompt Examples

After connecting, ask one of these questions:

  • Using the KUB Docs MCP server, how do I add KUB Testnet to MetaMask?

  • Search KUB Docs for the KUB Mainnet RPC URL and chain ID.

  • Find the guide for deploying a smart contract on KUB Testnet. Summarize the required setup.

For agentic tools, use this prompt:

Troubleshooting

If your tool cannot connect:

  • Confirm https://docs.kubchain.com is reachable.

  • Confirm the URL ends with /~gitbook/mcp.

  • Use /~gitbook/mcp/auth only for partially authenticated sites.

  • Confirm the tool supports HTTP MCP transport.

Last updated