# AI integration (MCP) Capable Sites are AI-ready and can be integrated in two ways: * the `llms.txt` [standard](https://llmstxt.org/) \- 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](https://modelcontextprotocol.io/docs/getting-started/intro)) - 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)**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:// ``` Once added, you can enable it per conversation via the **"+"** button → Connectors. --- ## [#](#anthropic-claude-desktop)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://"] } } } ``` --- ## [#](#anthropic-claude-code)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://" } } } ``` --- ## [#](#cursor-ide)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://" } } } ```