MCP server
The Hub Chatt2.me documentation is available through a public MCP (Model Context Protocol) server:
https://docs.chatt2.me/mcp
It requires no API key and exposes only the documentation published at docs.chatt2.me.
Available tools
docs_search
Search the documentation before fetching a page.
{"query":"webhook signature","limit":10}
query is required. limit is optional and accepts values from 1 to 20.
docs_fetch
Fetch the complete Markdown content of a page returned by docs_search.
{"url":"https://docs.chatt2.me/docs/latest/authentication/"}
Connect an MCP client
Claude Code
claude mcp add --transport http hub-chatt2me-docs https://docs.chatt2.me/mcp
Cursor and VS Code
Add the server to your MCP configuration:
{
"mcpServers": {
"hub-chatt2me-docs": {
"url": "https://docs.chatt2.me/mcp"
}
}
}
Test the endpoint
List the tools with JSON-RPC:
curl -X POST https://docs.chatt2.me/mcp \
-H 'Accept: application/json, text/event-stream' \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Search for a topic:
curl -X POST https://docs.chatt2.me/mcp \
-H 'Accept: application/json, text/event-stream' \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"docs_search","arguments":{"query":"authentication"}}}'