Quickstart
This sections showcases a few ways to get started using our remote MCP server.
The Katoshi MCP server is currently in Beta - Please report any issues or feedback in our Telegram Group
Connection Types
Katoshi's MCP server is available via stream for persistent connexion for high-volume data flow.
https://server.katoshi.ai/x2/mcp/A17mXBLw/mcp/stream
Authentication
Authentication is required to connect to the MCP server. 2 auth options are available:
1) API Key in URL
Pass your Katoshi API Key directly in the URL
https://server.katoshi.ai/x2/mcp/A17mXBLw/KATOSHI_API_KEY/stream
2) Bearer Token
Pass your Katoshi API Key in headers as a bearer token
https://server.katoshi.ai/x2/mcp/A17mXBLw/mcp/stream
"Authorization": "Bearer KATOSHI_API_KEY"Client Integrations
Some other MCP clients like Claude Desktop requires an MCP server config file, use the following:
{
"command": "npx",
"args": [
"mcp-remote",
"https://server.katoshi.ai/x2/mcp/A17mXBLw/KATOSHI_API_KEY/stream"
]
}Replace the
KATOSHI_API_KEYenv value with your Katoshi API Key
n8n Integration
You can connect the Katoshi MCP to n8n agents using this tutorial
n8nLast updated
Was this helpful?