MCP Server
Connect AI agents to Tona's documentation with the built-in MCP server.
Tona Docs includes a built-in MCP (Model Context Protocol) server that lets AI agents search and read documentation directly. This is useful if you use tools like Claude Code, Cursor, or other AI-powered development environments.
Endpoint
https://docs.tona.app/mcpThe server accepts JSON-RPC 2.0 requests via POST.
Available Tools
The MCP server provides three tools:
| Tool | Description |
|---|---|
list_docs | List all documentation pages organized by section |
read_doc | Read a specific page by its path (e.g. getting-started/creating-a-project) |
search_docs | Full-text search across all documentation pages |
Configuration
Claude Code
Add the following to your project's .mcp.json:
{
"mcpServers": {
"tona-docs": {
"type": "url",
"url": "https://docs.tona.app/mcp"
}
}
}Cursor
Add the following to your project's .cursor/mcp.json:
{
"mcpServers": {
"tona-docs": {
"type": "url",
"url": "https://docs.tona.app/mcp"
}
}
}Other MCP Clients
Point any MCP-compatible client to https://docs.tona.app/mcp using the Streamable HTTP transport. The server supports both single and batch JSON-RPC requests.
Verify the Connection
You can check if the server is running by visiting the endpoint in your browser:
https://docs.tona.app/mcpThis returns a JSON response with the server name, version, and available tools.