Skip to content

Start typing to search the documentation.

Search Self docs
from your favorite agent

Plug it into your favorite AI agent to search and integrate the Self documentation — and start building.

MCP https://mcp.self.xyz/mcp

It exposes a single search_docs tool that runs semantic search over the Self docs and returns Markdown with links back to the source pages.

Claude Code

Run this in your terminal to register the server for your user account:

claude mcp add --transport http --scope user self-docs https://mcp.self.xyz/mcp

Claude Desktop

Add the server to your Claude Desktop configuration file:

{
  "mcpServers": {
    "self-docs": {
      "command": "npx",
      "args": ["-y", "mcp-remote@latest", "https://mcp.self.xyz/mcp"]
    }
  }
}

Cursor

Add the server to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "self-docs": {
      "url": "https://mcp.self.xyz/mcp"
    }
  }
}