Connect Moca Network documentation to your AI tools to get contextual, up-to-date answers about Moca Network, Moca Chain, and AIR Kit. When you connect the MCP server, AI assistants can search the documentation directly instead of relying on training data.
What is MCP?
The Model Context Protocol (MCP) is an open protocol that creates standardized connections between AI applications and external services, like documentation. When an AI application connects to your documentation MCP server, it can search your documentation directly in response to your prompts instead of relying on information from its training data or making a generic web search.
Your MCP server provides access to all indexed content on the Moca Network documentation site. AI applications determine when to use the search tool based on the context of the conversation and the relevance of the documentation.
You can also use the contextual menu on any page of the documentation to copy the MCP server URL or install it directly into Cursor or VS Code.
Connect to the MCP server
Connect the Moca Network documentation MCP server to your preferred AI tool:
Claude
Claude Code
Cursor
VS Code
Get your MCP server URL
Your MCP server URL is: https://docs.moca.network/mcp
Add the Moca Network MCP server to Claude
- Navigate to the Connectors page in the Claude settings.
- Select Add custom connector.
- Add the Moca Network MCP server:
- Name:
MocaNetwork
- URL:
https://docs.moca.network/mcp
- Select Add.
Access the MCP server in your chat
- When using Claude, select the attachments button (the plus icon).
- Select the MocaNetwork MCP server.
- Ask Claude a question about Moca Network or AIR Kit.
See the Model Context Protocol documentation for more details.Get your MCP server URL
Your MCP server URL is: https://docs.moca.network/mcp
Add the MCP server to Claude Code
Run the following command:claude mcp add --transport http MocaNetwork https://docs.moca.network/mcp
Test the connection
Verify the connection by running: See the Claude Code documentation for more details.Get your MCP server URL
Your MCP server URL is: https://docs.moca.network/mcp
Open MCP settings
- Use Command + Shift + P (Ctrl + Shift + P on Windows) to open the command palette.
- Search for “Open MCP settings”.
- Select Add custom MCP. This opens the
mcp.json file.
Configure the Moca Network MCP server
In mcp.json, add:{
"mcpServers": {
"MocaNetwork": {
"url": "https://docs.moca.network/mcp"
}
}
}
Test the connection
In Cursor’s chat, ask “What tools do you have available?” Cursor should show the MocaNetwork MCP server as an available tool.
See the Cursor documentation for more details.Get your MCP server URL
Your MCP server URL is: https://docs.moca.network/mcp
Create MCP configuration
Create a .vscode/mcp.json file in your project root.
Configure the Moca Network MCP server
In .vscode/mcp.json, add:{
"servers": {
"MocaNetwork": {
"type": "http",
"url": "https://docs.moca.network/mcp"
}
}
}
See the VS Code documentation for more details.