AI integration (MCP)

Capable Sites are AI-ready and can be integrated in two ways:

  • the llms.txt standard - a simple, crawlable file at the root of your site that advertises AI-related endpoints, capabilities, and usage guidelines for language models.

  • via MCP (Model Context Protocol) - a protocol that lets AI agents securely discover and call your site's tools (APIs) with typed schemas, authentication, and streaming results.

Once connected, the agent can read declared capabilities, follow access rules, and call exposed tools to retrieve content or perform actions as permitted.


#Anthropic Claude Web

In Claude Web, these are called "custom connectors."

  1. Open Settings

  2. Open the Connectors section

  3. Click "Add Custom Integration"

  4. Paste your remote MCP server URL:

https://bridge.staticmcp.com/sse?url=https://<YOUR_CAPABLE_SITE_URL>

Once added, you can enable it per conversation via the "+" button → Connectors.


#Anthropic Claude Desktop

In Claude Desktop, these are called "custom connectors."

  1. Open Settings

  2. Open Developer

  3. Edit Config, which opens the claude_desktop_config.json file.

  4. Add your server:

{
  "mcpServers": {
    "my-server": {
      "command": "npx",
      "args": ["mcp-remote", "https://bridge.staticmcp.com/sse?url=https://<YOUR_CAPABLE_SITE_URL>"]
    }
  }
}

#Anthropic Claude Code

Create a file called .mcp.json with the following contents:

{
  "mcpServers": {
    "capable-site": {
      "type": "sse",
      "url": "https://bridge.staticmcp.com/sse?url=https://<YOUR_CAPABLE_SITE_URL>"
    }
  }
}

#Cursor IDE

Create a file called .cursor/mcp.json with the following contents:

{
  "mcpServers": {
    "capable-site": {
      "type": "sse",
      "url": "https://bridge.staticmcp.com/sse?url=https://<YOUR_CAPABLE_SITE_URL>"
    }
  }
}