Skip to main content
We want to make our documentation as accessible as possible. We’ve included several ways for you to use these docs programmatically through AI assistants, code editors, and direct integrations, such as Model Context Protocol (MCP).

Quick access options

On any page in our documentation, you’ll find a contextual menu dropdown in the top right corner with quick access options including our llms.txt, MCP server connection, and other integrations such as ChatGPT and Claude.
Quick access menu showing Copy page, View as Markdown, Open in ChatGPT, Open in Claude, and Copy MCP Server options

Use our MCP server

Our documentation includes a built-in Model Context Protocol (MCP) server that lets AI applications query the latest docs in real-time. The Dedalus docs MCP server is available at:
https://docs.dedaluslabs.ai/mcp
Once connected, you can ask your AI assistant questions about Dedalus SDK, MCP servers, and our platform, and it will search our documentation to provide accurate, current answers.

Connect with Claude Code

If you’re using Claude Code, run this command in your terminal to add the server to your current project:
claude mcp add --transport http docs-dedalus https://docs.dedaluslabs.ai/mcp
Project (local) scopedThe command above adds the MCP server only to your current project/working directory. To add the MCP server globally and access it in all projects, add the user scope by adding --scope user to the command:
claude mcp add --transport http docs-dedalus --scope user https://docs.dedaluslabs.ai/mcp

Connect with Claude Desktop

  1. Open Claude Desktop
  2. Go to SettingsDeveloperConnectors
  3. Click Add MCP Server
  4. Add our MCP server URL: https://docs.dedaluslabs.ai/mcp

Connect with Codex CLI

If you’re using OpenAI Codex CLI, run this command in your terminal to add the server globally:
codex mcp add dedalus-docs --url https://docs.dedaluslabs.ai/mcp

Connect with Cursor or VS Code

Add the following to your MCP settings configuration file:
{
  "mcpServers": {
    "docs-dedalus": {
      "url": "https://docs.dedaluslabs.ai/mcp"
    }
  }
}

Connect with Antigravity

Add the following to your MCP settings configuration file:
{
  "mcpServers": {
    "docs-dedalus": {
      "serverUrl": "https://docs.dedaluslabs.ai/mcp"
    }
  }
}

Learn more

Have questions or feedback? Join our Discord community or email us.