AI integration (MCP)
Capable Sites are AI-ready and can be integrated in two ways:
the
llms.txtstandard - 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."
Open Settings
Open the Connectors section
Click "Add Custom Integration"
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."
Open Settings
Open Developer
Edit Config, which opens the
claude_desktop_config.jsonfile.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>"
}
}
}
