mcp-atproto-docs

MCP.Pizza Chef: immber

mcp-atproto-docs is a remote MCP server that enables querying and generating answers based on the ATproto documentation available online. Hosted on Cloudflare, it provides a tool for searching the ATproto docs, facilitating developers building on the ATproto protocol to quickly access relevant documentation and information through structured queries.

Use This MCP server To

Search ATproto protocol documentation for specific information Generate answers from ATproto docs for developer queries Integrate ATproto doc search into developer tools and IDEs Provide real-time documentation lookup for ATproto protocol Support building ATproto-based applications with quick doc access

README

A Remote MCP Server for ATproto Docs

ATproto Docs Server MCP server

Deployed to Cloudflare

This remote MCP server publishes a tool for searching and querying the documentation for ATprotocol.

Tool Description
search_documentation Searches the atproto docs

Created with love 💙, to make life easier for developers building on the protocol.

This remote MCP server is publicly available at:

https://mcp-atproto-docs.immber.workers.dev/sse

Depends on

Created using the remote MCP authless server template CloudFlare provides.

This MCP server queries a CloudFlare AutoRAG instance that is fed by a Cloudflare worker with ATprocol's public documentation.

  • cron worker => R2 storage bucket => AutoRAG Vectorize DB

This project was originally inspired by Cloudflare's Documentation MCP Server.

Sources

atproto-docs-worker is a cloudflare worker that crawls and saves documentation to an R2 bucket. It runs on a weekly cron schedule.

To view or request changes to the list of resources currently being included, please visit that repo.

Using the tool

Connect with any MCP compatible client. Then ask your AI agent of choice to use the search_documentation tool.

Connect to Cloudflare AI Playground

You can connect to this MCP server from the Cloudflare AI Playground, which is a remote MCP client:

  1. Go to https://playground.ai.cloudflare.com/
  2. Enter your deployed MCP server URL ( https://mcp-atproto-docs.immber.workers.dev/sse)
  3. You can now use this MCP tool directly from the playground!

Connect Claude Desktop to your MCP server

To connect to this MCP server from Claude Desktop, follow Anthropic's Quickstart and within Claude Desktop go to Settings > Developer > Edit Config.

Update with this configuration:

{
  "mcpServers": {
    "search_atproto_docs": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp-atproto-docs.immber.workers.dev/sse"
      ]
    }
  }
}

Restart Claude and you should see the tools become available.

Sample Queries

screenshot from claude desktop showing the results of a query about oauth

mcp-atproto-docs FAQ

How do I access the mcp-atproto-docs server?
It is publicly available via the URL https://mcp-atproto-docs.immber.workers.dev/sse for querying ATproto documentation.
Does mcp-atproto-docs require authentication?
No, it is built using a remote MCP authless server template, so no authentication is needed.
What kind of queries can I perform with this MCP server?
You can perform searches and generate answers based on the ATproto documentation content.
How is the documentation data sourced?
The server queries a Cloudflare AutoRAG instance fed by a Cloudflare worker with ATproto documentation data.
Can I integrate this MCP server into my development environment?
Yes, it is designed to be integrated into developer tools to provide real-time ATproto doc lookups.
Is this MCP server limited to ATproto docs only?
Yes, it specifically targets the ATproto protocol documentation for focused and relevant results.
What benefits does this MCP server provide to developers?
It simplifies accessing and querying ATproto docs, speeding up development and reducing manual search effort.
Who maintains the mcp-atproto-docs server?
It is maintained by the community and hosted on Cloudflare, created with developer convenience in mind.