Quickstart

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

circle-exclamation

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"

circle-exclamation

MCP Endpoint

Katoshi's MCP server is available via stream for persistent connexion for high-volume data flow.

  • Pass your USER_ID in the id query parameter

https://mcp.katoshi.ai?id=USER_ID

circle-info

You can find your MCP endpoint and user id in the app's settings page.


Authentication

Authentication is required to connect to the MCP server. We provide 2 ways to auth:

1) Bearer Token

  • Pass your Katoshi API Key in headers as a bearer token

2) URL Query Parameter

  • Pass your Katoshi API Key to the api_key query parameter

https://mcp.katoshi.ai?id=USER_ID&api_key=API_KEY


Client Integrations

Katoshi

The easiest way to use our MCP is by creating an AI Agent directly in the Katoshi app.

  • Our native AI agents are already connected to our MCP and have even more tools that allows agents to read charts, run technical analysis, and more.

  • Katoshi Agents are also API-ready out-of-the-box, so you can send commands to your agents via simple POST requests. See the Agent API section for more info.

Continue reading below if you prefer to use and setup your own Agentic framework or AI tools

Cursor

Clients like Cursor will require you to add MCP servers in the mcp.json file.

  • Replace USER_ID with your user id and API_KEY with your Katoshi API Key

circle-exclamation

Agentic Frameworks

Agentic frameworks like LangChain, CrewAI, AutoGen, Agno, while slightly different will connect to MCP tools in a similar way. Here's a simple example using the Agno frameworkarrow-up-right that will create a fully functional Agent with memory and full trading capacity due to our MCP tools:

n8n Integration

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

n8nchevron-right

Last updated