To make Subframe documentation available to your AI tools, we’ve created an MCP server at https://docs.subframe.com/mcp.
Our MCP server is currently limited to docs, but we’ll be adding more features in the future - including access to your Subframe projects.

Cursor

To connect the Subframe MCP server to Cursor:
1

Open MCP settings

  1. Use Command + Shift + P (Ctrl + Shift + P on Windows) to open the command palette.
  2. Search for “Open MCP settings”.
  3. Select Add custom MCP. This will open the mcp.json file.
2

Configure the Subframe server

In mcp.json, add:
mcp.json
{
  "mcpServers": {
    "subframe": {
      "url": "https://docs.subframe.com/mcp"
    }
  }
}
3

Test the connection

In Cursor’s chat, you can ask “What tools do you have available? Subframe docs search should now be available.
See Installing MCP servers in the Cursor documentation for more information.

Claude Code

To connect the Subframe MCP server to Claude code:
claude mcp add --transport http subframe https://docs.subframe.com/mcp

Gemini CLI

To connect the Subframe MCP server to the Gemini CLI, add the following configuration either globally at ~/.gemini/settings.json or locally at .gemini/settings.json
~/.gemini/settings.json
{
  ...file contains other config objects
  "mcpServers": {
    "subframe": {
      "httpUrl": "https://docs.subframe.com/mcp"
    }
  }
}
See MCP Servers with the Gemini CLI for more information.