Documentation

Browse tutorials, platform guides, and reference material for inventor.bot.

Setup MCP

How to setup MCP on various providers and systems.

Updated 4/19/2026

Model Context Protocol (MCP) allows various AI tools to talk to each other and to services.

inventor.bot hosts a MCP Server for premium users. This allows you to connect agents like ChatGPT, Claude, Cursor, and more to your inventor.bot projects.

Those agents can then build and manage flows, databases, and more, as well as integrate your flows with external services.

Setting up MCP

You can connect to MCP at this URL:

https://dash.inventor.bot/api/mcp

inventor.bot MCP uses Streamable HTTP and Dynamic Client Registration, so you don't need a client id/secret or authorization token.

For provider-specific setup instructions, see below:

ChatGPT

Coming soon.

claude.ai

Coming soon.

Claude Code

Coming soon.

Codex CLI

Coming soon.

OpenCode

To add the MCP server to OpenCode, run opencode mcp add and select the following options:

  • Location: your choice, depends on where you want to use MCP
  • MCP Server Name: inventor.bot
  • MCP Server Type: Remote
  • MCP Server URL: https://dash.inventor.bot/api/mcp
  • Does this server require OAuth authentication? Yes
  • Do you have a pre-registered Client ID? No

Once the server is added, run opencode mcp auth inventor.bot. A browser will open and you can authorize the connection.

Cursor

Due to an issue in Cursor, their native MCP client is unable to talk to inventor.bot. As a workaround, Cursor recommends using mcp-remote, a local program that proxies your MCP requests.

As a result, this setup requires that you have npm installed so you can utilize the npx command. This page explains how to install npm if you don't have it already.

We plan to remove this section and provide a standard config that does not require this workaround once Cursor fixes this issue.

Go to Cursor Settings, then the Tools & MCPs tab. Click New MCP Server to go to your mcp.json file.

Paste the below configuration:

{
  "mcpServers": {
    "inventor.bot": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://dash.inventor.bot/api/mcp"]
    }
  }
}

You may need to disable and re-enable the config from the Tools & MCPs tab, then a browser will open and you can authorize the connection.