← atproto.md

INDIVIDUAL MCP TOOL

discover_repos_by_collection

Discover every repo (DID) on the AT Protocol network that has records in a given collection NSID.

atproto.mdnone authenticationAvailability not checked

Input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent endpoint

atproto.md

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.atproto-md]
url = "https://atproto.md/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "atproto-md": {
      "type": "http",
      "url": "https://atproto.md/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: atproto-md
Remote MCP URL: https://atproto.md/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "atproto-md": {
      "url": "https://atproto.md/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "atproto-md": {
      "type": "http",
      "url": "https://atproto.md/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "atproto-md",
  "transport": "streamable-http",
  "url": "https://atproto.md/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • resolve_identity — Resolve the full identity chain for an AT Protocol actor: handle → DID → DID document → PDS endpoint
  • get_repo — List all collections in an AT Protocol repo
  • list_records — List records in any AT Protocol collection on any PDS
  • get_record — Fetch a single AT Protocol record by its rkey
  • get_lexicon — Resolve an AT Protocol Lexicon schema by its NSID.
  • plc_audit — Fetch the PLC audit log for a did:plc identity — the full, chronological history of identity operations from plc.directory.
  • plc_data — Fetch the current canonical PLC state for a did:plc identity from plc.directory — its active PDS, all handles (alsoKnownAs), atproto signing key, and rotation keys in priority order.
  • plc_last — Fetch the most recent PLC operation for a did:plc identity and the state it established (PDS, handles, keys, operation type).