Quickstart

This sections showcases a few ways to get started using our remote MCP server.


Connection Types

2 types of conections are available:

1) SSE

  • One-way, event-based connection for simple updates.

https://server.katoshi.ai/x2/mcp/A17mXBLw/mcp/sse

2) Streaming

  • Persistent connection 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_KEY env value with your Katoshi API Key


n8n Integration

You can connect the Katoshi MCP to n8n agents using this tutorial

n8n

Last updated

Was this helpful?