Skip to content

Setup: Local MCP Server

MCP servers extend TomoriBot with external tools. Online (HTTPS) MCP servers work on any instance — see Tools & Extensions. Local MCP servers are different:

Start any MCP server that exposes an HTTP/SSE transport on a local port. For example, many MCP servers run via Node:

Terminal window
npx -y <some-mcp-server> --port 3000

The exact command depends on the server you’re running. Note the URL and transport path it prints — commonly something like http://localhost:3000/sse.

TomoriBot’s own tooling expects Node.js v20+ to be available for MCP tooling on the host.

Run /mcp add and point the URL field at your local server:

http://localhost:3000/sse

Leave the Auth Token field blank — no auth token is needed for local servers.

  • /mcp remove — unregister the server. This immediately disconnects it and frees a slot.

For the online-MCP flow and the full security rationale, see Tools & Extensions → MCP Servers.