atproto-mcp
Use this MCP server as a searchable AT Protocol knowledge base for docs, lexicons, Bluesky API docs, and cookbook examples.
Search across all AT Protocol documentation, lexicons, Bluesky API docs, and cookbook examples.
Retrieve a specific lexicon by NSID.
List lexicons, optionally filtered by namespace.
Semantically search lexicon schemas.
Retrieve or list cookbook examples, optionally filtered by language.
Search Bluesky developer API documentation.
Force re-fetching of source repositories and rebuilding of the search index.
Provides semantic search and access to AT Protocol/Bluesky documentation, lexicon schemas, and cookbook examples. Tools include search, lexicon retrieval, and cookbook example lookup.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@atproto-mcpsearch for creating a post in AT Protocol"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
atproto-mcp
MCP server providing a searchable knowledge base for the AT Protocol ecosystem — protocol documentation, lexicon schemas, Bluesky developer API docs, and cookbook examples — powered by txtai semantic search.
Data Sources
Source | Repository | Description |
AT Protocol Website | Protocol specs, guides, and blog posts from atproto.com | |
Bluesky API Docs | Developer docs from docs.bsky.app — tutorials, guides, advanced topics | |
AT Protocol Lexicons | JSON schemas defining all AT Protocol endpoints and record types | |
Cookbook | Example projects in Python, Go, TypeScript, and JavaScript |
Related MCP server: mcp-docs
Tools
Tool | Description |
| Semantic search across all documentation sources |
| Retrieve a specific lexicon by NSID (e.g. |
| List all lexicons, optionally filtered by namespace |
| Semantic search within lexicon schemas |
| Get a specific cookbook example by project name |
| List all cookbook examples, optionally by language |
| Semantic search within Bluesky API docs |
| Force re-fetch repos and rebuild the index |
Prompts
Prompt | Description |
| Get a comprehensive explanation of a lexicon |
| Get implementation guidance with code examples |
| Help debug AT Protocol / Bluesky API issues |
| Explore all lexicons in a namespace |
Installation
Prerequisites
Python 3.12+
uv (recommended) or pip
Git (for cloning source repositories)
Install from source
git clone https://github.com/Ashex/atproto-mcp.git
cd atproto-mcp
uv syncRun with uvx
uvx atproto-mcpRun as a local MCP service
Use Streamable HTTP when several local agents should share one warmed knowledge base instead of each starting its own stdio server:
uv run atproto-mcp --streamable-httpThe service accepts Streamable HTTP MCP connections at
http://127.0.0.1:8000/mcp. It listens only on loopback and has no
authentication, so it is not exposed to the local network. Configure each
agent's Streamable HTTP MCP connection to use that URL. Choose another local
port with uv run atproto-mcp --streamable-http --port 8787.
Start the local service on Linux login
The following user service starts after you log in. It runs under your account, needs no root access, and stops after your last login session ends.
# ~/.config/systemd/user/atproto-mcp.service
[Unit]
Description=AT Protocol MCP local service
[Service]
ExecStart=%h/.local/bin/uvx atproto-mcp --streamable-http
Restart=on-failure
[Install]
WantedBy=default.targetCreate the directory, save the unit, then enable it for your user account:
mkdir -p ~/.config/systemd/user
systemctl --user daemon-reload
systemctl --user enable --now atproto-mcp.serviceCheck the service with systemctl --user status atproto-mcp.service. If uvx
is installed elsewhere, replace %h/.local/bin/uvx in ExecStart with the
path from command -v uvx. This setup starts on login only; it does not use
sudo, a system service, or persistent login sessions.
Configuration
Claude Desktop (MCPB bundle) — recommended
Download atproto-mcp-<version>.mcpb from the
latest release and open
it. Claude Desktop shows an install dialog with optional fields for the cache
directory, refresh interval, and embedding model; leave them blank for the
defaults. No Python or JSON editing required — the host installs dependencies
with uv.
Bundles are self-signed, so the installer shows an "unknown publisher" warning. See Releases for what that does and does not guarantee.
Every other host below uses the PyPI package and is unaffected by the bundle.
VS Code / Copilot
Add to .vscode/mcp.json in your workspace:
{
"mcpServers": {
"atproto": {
"command": "uvx",
"args": [
"atproto-mcp"
]
}
}
}Kiro Power
Open Kiro → Powers
Select Import power from GitHub
Enter
https://github.com/Ashex/atproto-mcp
Claude Desktop (manual)
Prefer the MCPB bundle above. To
configure by hand instead, add to
~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"atproto": {
"command": "uvx",
"args": [
"atproto-mcp"
]
}
}
}MCPHub
Add to ~/.config/mcphub/servers.json:
{
"mcpServers": {
"atproto": {
"command": "uvx",
"args": ["atproto-mcp"]
}
}
}OpenCode
Add to your opencode.json:
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"atproto": {
"type": "local",
"command": ["uvx", "atproto-mcp"]
}
}
}Environment Variables
Variable | Default | Description |
|
| Where repos and the search index are stored |
|
| Hours before re-fetching repositories |
|
| Sentence-transformers model for embeddings |
How It Works
The server connects immediately and warms up in the background, so a slow first run never blocks the host's startup handshake.
On first launch, warmup:
Shallow clones the repos into
~/.cache/atproto-mcp/repos/Parses MDX docs, lexicon schemas, and cookbook examples into text chunks
Indexes the chunks using txtai hybrid search (BM25 keyword + dense vectors from the
bge-small-en-v1.5sentence-transformer, ~130MB, runs locally) — exact identifiers like NSIDs match reliably alongside semantic queriesIndex is persisted in
~/.cache/atproto-mcp/index/for subsequent starts
This takes a few minutes. Until it finishes, tools return a short message
describing what the server is doing rather than failing. If warmup fails — no
network yet, for example — the server stays up, says so, and retries on its
own with exponential backoff until an index is in service. refresh_sources
forces a retry immediately.
On subsequent launches the cached index is loaded and put into service before any network access, so queries work within seconds even offline. Repos older than 24 hours are then refreshed with a shallow fetch and a hard reset to the tracked branch. If the refreshed repos differ from what the index was built from, the existing index keeps serving queries while a fresh one is rebuilt in the background and swapped in when ready.
Development
# Install in development mode
uv sync
# Run the server locally (stdio)
uv run atproto-mcp
# Run a shared local MCP service at http://127.0.0.1:8000/mcp
uv run atproto-mcp --streamable-http
# Test with the MCP Inspector
uv run mcp dev src/atproto_mcp/server.py
# Run with debug logging
ATPROTO_MCP_CACHE_DIR=/tmp/atproto-mcp uv run atproto-mcp
# Run the test suite (what CI runs)
uv run python -m unittest discover -s tests -p 'test*.py'
# Build the MCPB bundle
npm install -g @anthropic-ai/mcpb
mcpb validate .
mcpb pack . /tmp/atproto-mcp.mcpbLicense
MIT
Available Tools
8 toolsget_cookbook_exampleA
Retrieve a specific AT Protocol cookbook example by project name.
Returns the project README, file listing, and key source code files. Use this when you need implementation examples or starter code.
Args: name: Project directory name (e.g. "python-bsky-post", "ts-bot", "go-repo-export", "python-oauth-web-app"). Use list_cookbook_examples to discover available projects.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses the return content (README, file listing, source files) but does not explicitly state safety (read-only), permissions, or error behavior. It implies retrieval but lacks explicit behavioral notes.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured: two sentences plus a focused Args section. The purpose is front-loaded, and every sentence earns its place, with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter retrieval tool, the description covers purpose, usage, parameter semantics, and return content. It lacks explicit note on side effects or error handling, but the output schema covers return structure. Given no annotations, a slightly more detailed behavioral note would push it to 5, but it is complete enough.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides no description for the 'name' parameter (0% coverage). The description compensates with an Args section that explains the parameter, gives concrete examples, and references list_cookbook_examples to discover valid values. This adds significant meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it retrieves a specific AT Protocol cookbook example by project name. This is a specific verb+resource combination and distinguishes itself from sibling tools like list_cookbook_examples, which lists all examples.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says 'Use this when you need implementation examples or starter code' and directs users to list_cookbook_examples for discovering available projects. This provides clear guidance on when to use this tool and an alternative.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_lexiconA
Retrieve a specific AT Protocol lexicon by its NSID.
Returns the full lexicon schema including type definitions, properties, descriptions, and cross-references. Use this when you need the complete definition of a specific endpoint or record type.
Args: nsid: The Namespaced Identifier (e.g. "app.bsky.feed.post", "com.atproto.repo.createRecord", "chat.bsky.convo.sendMessage").
| Name | Required | Description | Default |
|---|---|---|---|
| nsid | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are absent, so the description must disclose behavioral traits. It does so by stating the return content: 'Returns the full lexicon schema including type definitions, properties, descriptions, and cross-references.' This conveys what the agent can expect. It does not cover error handling or authentication, but for a simple read operation the transparency is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured: a one-sentence purpose, a sentence describing the return value, a usage statement, and a parameter definition. Every sentence provides unique value with no redundancy or filler. The front-loaded verb and resource make it easy to scan.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with only one parameter, no annotations, and an existing output schema, the description covers all necessary aspects: what it does, when to use it, what it returns, and what the parameter means. It is complete enough for an agent to select and invoke the tool correctly without further clarification.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0% since the input schema only lists 'nsid' with no description. The description compensates fully with an Args section that defines 'nsid' as 'The Namespaced Identifier' and provides three concrete examples ('app.bsky.feed.post', 'com.atproto.repo.createRecord', 'chat.bsky.convo.sendMessage'). This gives the agent exactly what it needs to understand the parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a clear verb and resource: 'Retrieve a specific AT Protocol lexicon by its NSID.' This directly specifies what the tool does and distinguishes it from sibling tools like list_lexicons and search_lexicons by emphasizing lookup of a specific NSID rather than listing or searching. The additional clause 'complete definition of a specific endpoint or record type' reinforces the unique purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance with 'Use this when you need the complete definition of a specific endpoint or record type.' This tells the agent when to choose this tool. However, it does not explicitly mention sibling alternatives or state when not to use it, which would have made the guidance even stronger.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_cookbook_examplesA
List all AT Protocol cookbook examples (starter projects and scripts).
Use this to discover available example projects before fetching specific ones with get_cookbook_example.
Args: language: Optional filter by language ("python", "go", "typescript", "javascript"). Leave empty to list all.
| Name | Required | Description | Default |
|---|---|---|---|
| language | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses that it lists all examples, the optional language filter, and the empty-default behavior. It does not detail output format or potential pagination, but an output schema exists to cover return structure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Concise, front-loaded with the purpose, then a short usage line, then parametrized arg documentation. Every sentence contributes meaning without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter list tool, the description covers purpose, usage, parameter semantics, and sibling differentiation. An output schema exists, so return format is covered elsewhere. No critical information is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema only has 'language' with a default. The description enriches this by listing valid values ('python', 'go', 'typescript', 'javascript') and explaining that empty means 'list all.' This fully compensates for 0% schema description coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description states 'List all AT Protocol cookbook examples (starter projects and scripts)' with a specific verb and resource. It clearly distinguishes from get_cookbook_example by mentioning listing vs fetching specific examples.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly instructs 'Use this to discover available example projects before fetching specific ones with get_cookbook_example,' naming the alternative. Also specifies how to use the language filter and the default behavior.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_lexiconsA
List all AT Protocol lexicons, optionally filtered by namespace prefix.
Use this to discover available lexicons and their NSIDs before fetching specific ones with get_lexicon.
Args: namespace: Optional namespace prefix to filter by (e.g. "app.bsky.feed", "com.atproto.repo", "chat.bsky", "tools.ozone"). Leave empty to list all.
| Name | Required | Description | Default |
|---|---|---|---|
| namespace | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden. It discloses the filtering behavior with examples and the 'Leave empty to list all' behavior, but does not mention pagination, rate limits, or whether the operation is guaranteed read-only (though 'List' implies it). It adds some context beyond the schema, but could be more explicit about response size or limitations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured: a one-sentence purpose, a usage note, and a compact Args block with examples. It front-loads the main action and avoids unnecessary detail. Every sentence contributes value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple list tool with one optional parameter and an output schema, the description is complete enough. It explains what it does, when to use it, and the parameter semantics. It does not describe return values, but the output schema covers that. It lacks caveats like pagination or auth, but given the tool's simplicity and the presence of an output schema, the description suffices.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides only a 'namespace' string with default '', with no description. The description's Args section fully explains the parameter: it is an optional namespace prefix, provides concrete examples ('app.bsky.feed', 'com.atproto.repo', etc.), and clarifies that leaving it empty lists all. This adds significant meaning beyond the schema, compensating for the 0% schema description coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'List all AT Protocol lexicons, optionally filtered by namespace prefix,' which clearly identifies the verb (list), resource (AT Protocol lexicons), and scope (optional namespace filter). It also distinguishes itself from the sibling tool get_lexicon by stating this is for discovering lexicons before fetching specific ones. This gives a precise purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states 'Use this to discover available lexicons and their NSIDs before fetching specific ones with get_lexicon,' providing a clear when-to-use context and referencing the next step. It does not mention alternatives like search_lexicons or exclusion cases, but the guidance is sufficient for typical use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
refresh_sourcesA
Force re-fetch all AT Protocol source repositories and rebuild the search index.
Use this when you suspect the documentation is outdated or when upstream repos have been updated. This operation may take several minutes as it clones repositories and rebuilds the embeddings index.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that the operation 'may take several minutes as it clones repositories and rebuilds the embeddings index,' which is important behavioral context for an agent deciding to invoke it. However, it doesn't detail side effects like cache invalidation or whether the index is temporarily unavailable during rebuild.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, first is the action, second is usage and behavior. No fluff, front-loaded with the operation name and scope.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter maintenance tool, the description covers what it does, when to use it, and how long it takes. The output schema handles return values, so this is sufficient for an agent to make an informed decision.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has zero parameters, so the baseline is 4. The description adds no parameter information because there are none; the schema already covers everything with 100% coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb+resource: 'Force re-fetch all AT Protocol source repositories and rebuild the search index.' This clearly distinguishes it from the sibling search/list/get tools, which are all read-only queries.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use: 'Use this when you suspect the documentation is outdated or when upstream repos have been updated.' This is clear context, though it does not list when-not-to-use or name alternative tools, so it earns a 4 rather than a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_atproto_docsA
Search across all AT Protocol documentation, lexicons, Bluesky API docs, and cookbook examples.
Use this tool to find information about AT Protocol concepts, endpoints, data structures, authentication, federation, and implementation patterns. Search is hybrid (keyword + semantic), so exact identifiers like NSIDs ("app.bsky.feed.getFeed") or endpoint names match reliably.
Args: query: Natural language search query (e.g. "how to create a post", "OAuth authentication flow", "what is a DID"). source: Optional filter — restrict to a specific source: "atproto-website" (protocol specs/guides from atproto.com), "bsky-docs" (Bluesky API docs from docs.bsky.app), "lexicons" (AT Protocol lexicon schemas), "cookbook" (example projects and code). Leave empty to search all sources. content_type: Optional filter — restrict to a content type: "guide" (tutorials and how-to guides), "spec" (protocol specifications), "blog" (blog posts), "reference" (lexicon schemas and API references), "example" (cookbook examples and code). Leave empty to search all types. limit: Maximum number of results (1-20, default 10).
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | ||
| source | No | ||
| content_type | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses 'Search is hybrid (keyword + semantic), so exact identifiers like NSIDs ... match reliably', which is a useful behavioral trait beyond the obvious read-only nature of searching. It does not mention auth requirements or rate limits but still adds meaningful context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is moderately long but every sentence serves a purpose: purpose, usage, search behavior, and parameter details. The parameter explanations are structured clearly. It earns its length, though it could be slightly tightened without losing value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (4 parameters, output schema exists), the description covers the essential contexts: what it searches, when to use it, how the search behaves, and what each parameter does. It does not repeat return values (already in output schema) and is complete for a search tool, though it could mention default source coverage or result ordering.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0% description coverage, so the description must compensate. It comprehensively explains every parameter, including the exact allowed values for source ('atproto-website', 'bsky-docs', 'lexicons', 'cookbook'), content_type ('guide', 'spec', 'blog', 'reference', 'example'), and the range/default for limit ('1-20, default 10'). This is exceptional added value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'Search across all AT Protocol documentation, lexicons, Bluesky API docs, and cookbook examples', which uses a specific verb ('search') and resource scope ('all AT Protocol documentation') that clearly distinguishes it from sibling tools like search_lexicons and search_bsky_api by its comprehensive coverage.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description states 'Use this tool to find information about AT Protocol concepts, endpoints, data structures, authentication, federation, and implementation patterns', giving clear guidance on when to use it. However, it does not explicitly mention when NOT to use it or name alternative tools, so it stops short of a perfect 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_bsky_apiA
Search Bluesky developer API documentation (docs.bsky.app).
Searches guides, tutorials, and advanced topics specific to the Bluesky API. Use this for questions about Bluesky-specific features like the firehose, federation, moderation, or API usage patterns.
Args: query: Search query (e.g. "firehose subscription", "custom feeds", "authentication", "rate limits"). limit: Maximum results (1-20, default 10).
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It indicates a search operation (implying read-only) and specifies the content scope, but does not disclose potential rate limits, authentication requirements, or result behavior. For a search tool with no side effects, this is adequate but not rich.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded with the purpose. The args section is clearly formatted and the examples are useful. It could be slightly more structured (e.g., bullet points) but remains readable and focused.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple 2-parameter search tool with an output schema, the description covers the essential usage and parameter details. It lacks explicit references to sibling tools or limitations, but is otherwise complete for its complexity level.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description fully compensates by explaining both parameters: query includes multiple examples, and limit specifies a valid range (1-20) and default (10). This adds significant meaning beyond the bare schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches Bluesky developer API documentation, specifying the resource (docs.bsky.app) and scope (guides, tutorials, advanced topics). It distinguishes itself from siblings by focusing on Bluesky-specific features, but does not explicitly name alternative tools like search_atproto_docs.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly states 'Use this for questions about Bluesky-specific features like the firehose, federation, moderation, or API usage patterns', giving clear contextual guidance. However, it does not provide when-not-to-use instructions or mention alternative tools for other types of queries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_lexiconsA
Search within AT Protocol lexicons using semantic search.
Searches lexicon descriptions, property names, types, and definitions. More targeted than search_atproto_docs when you specifically need lexicon/schema information.
Args: query: Search query (e.g. "post creation", "follow relationship", "blob upload", "moderation labels"). limit: Maximum results (1-20, default 10).
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must fully disclose behavioral traits. It mentions 'semantic search' and search scope, but does not state whether the operation is read-only, any rate limits, return format, pagination behavior, or other side effects. This is a significant gap for a tool with no annotation support.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and well-structured: a one-sentence core action, a supplementary scope sentence, and a clear Args list. It is front-loaded, contains no fluff, and every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple search tool with an output schema and only two parameters, the description covers the essential purpose and usage. It explicitly differentiates from one sibling and provides parameter context. However, it lacks a brief note on what output format to expect (though output schema exists) and does not position itself relative to all relevant siblings, leaving minor completeness gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema coverage, the description compensates well by explaining each parameter: query is described with illustrative examples and limit includes a range (1-20) and default (10). This adds meaning beyond the schema's bare types and defaults, though it could be slightly more detailed about the query's semantic matching behavior.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's action ('Search within AT Protocol lexicons using semantic search') and its scoped resource ('lexicon descriptions, property names, types, and definitions'). It also explicitly distinguishes itself from a sibling tool ('More targeted than search_atproto_docs when you specifically need lexicon/schema information'), making its purpose unmistakable.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit usage guidance: 'More targeted than search_atproto_docs when you specifically need lexicon/schema information.' This names an alternative and states the condition under which this tool is preferred. However, it does not compare against all siblings (e.g., search_bsky_api), leaving some ambiguity for broader choices.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
8 tool updates
v0.3.1- First observed
get_cookbook_example - First observed
get_lexicon - First observed
list_cookbook_examples - First observed
list_lexicons - First observed
refresh_sources - First observed
search_atproto_docs - First observed
search_bsky_api - First observed
search_lexicons
TDQS
Scored across 8 tools
Tools are mostly distinct with clear list/get pairs for cookbook examples and lexicons, plus three search tools with different scopes. However, search_atproto_docs can be filtered to mimic search_lexicons and search_bsky_api, creating minor potential for misselection.
All tools follow a consistent verb_noun pattern using 'list', 'get', 'search', and 'refresh'. The naming clearly signals the action and the resource, making it predictable and easy to understand.
With 8 tools, the server is well-scoped for a documentation and examples service. Each tool serves a clear purpose without unnecessary overlap or bloat, falling comfortably within the ideal 3-15 tool range.
The server covers the core needs for exploring AT Protocol docs: listing and fetching lexicons, listing and fetching cookbook examples, and searching across multiple sources. A minor gap is the lack of a direct way to retrieve a specific documentation page by URL, but the search tools likely handle most use cases.
Maintenance
Related MCP Connectors
MCP server for querying Forkast documentation
Official MCP server for subfeed.app — the cloud for agents. 15+ tools for AI agents to register, build, and deploy other agents. Zero human required. Start here: subfeed.app/skill.md
MCP server for accessing curated awesome list documentation
MCP server for agentverse documentation, generated by doc2mcp.
Related MCP Servers
- AlicenseAqualityDmaintenanceA remote MCP server providing a tool for searching and querying ATprotocol documentation, helping developers easily access information while building on the protocol.114Creative Commons Zero v1.0 Universal
- AlicenseNot gradedqualityDmaintenanceGeneric MCP server that exposes Markdown documentation to LLMs, enabling them to search and answer questions about any software documentation.MIT
- AlicenseNot gradedqualityDmaintenanceAn MCP server that provides AI assistants with searchable access to Cardano ecosystem documentation, SDKs, smart contract languages, governance, scaling, and developer standards from a single endpoint.3Apache 2.0
- AlicenseNot gradedqualityAmaintenanceMCP server that enables AI agents to search, fetch, and analyze a self-maintaining markdown knowledge base with provenance, drift detection, and canonical definitions.2MIT