docbin
Server Details
Give an agent a place to put large output. Build logs and reports get a stable versioned URL.
- Status
- Healthy
- Uptime
- 100.0% over 22 days
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-06-18
- URL
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: create, fetch, and search. There is no meaningful overlap between them, since get_doc retrieves exact content while search_docs returns matching document metadata.
All tool names follow a consistent verb_noun pattern: create_doc, get_doc, search_docs. The plural in search_docs is idiomatic and does not create confusion.
Three tools is a focused, appropriate count for this server's scope. Each tool covers a distinct and essential operation without redundancy or bloat.
The core workflow of creating, fetching, and searching is covered, and versioning handles updates. However, there is no delete operation and no way to list all documents without knowing a name, leaving notable lifecycle gaps.
Available Tools
3 toolscreate_docAInspect
Create a document and return its public URL. Re-using an existing name adds a new immutable version. Omit the name to get a random one. For content larger than ~10KB or any file already on disk, do NOT inline it here - run docbin push <file> [--name <doc>] in your shell instead (set DOCBIN_TOKEN to an API key from https://docbin.app/settings/keys). Inlining large content streams it through the model token-by-token and will time out.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Document name. A random slug is generated if omitted. | |
| files | No | Optional: a multi-file group. When provided, supersedes content/content_type. The entry file is auto-selected (index/readme/main, else first). CROSS-FILE LINKS: to link from one file in the group to another, use a bare relative link to the sibling's filename, exactly as given in this `files` array - e.g. <a href="page2.html">. The viewer intercepts it and switches the active file (updating the left-pane selection and the URL). Do NOT use absolute URLs, slugs, ./ prefixes, or #file- hashes for cross-file links. In-page anchor links within a file (e.g. #section) work as normal. | |
| content | No | The HTML, Markdown, MDX, or code body of the document. | |
| language | No | Syntax-highlight language hint, used when content_type is 'code' (e.g. 'rust'). | |
| visibility | No | Defaults to public. private = owner only; unlisted = anyone with the link; public = listed, searchable, and crawlable. | |
| content_type | No | Defaults to html. 'mdx' renders Markdown with JSX components; 'code' renders a single syntax-highlighted block. |
Output Schema
| Name | Required | Description |
|---|---|---|
| name | Yes | |
| appUrl | Yes | |
| handle | Yes | |
| rawUrl | Yes | |
| deleted | No | |
| snippet | No | |
| version | Yes | |
| language | No | |
| visibility | No | |
| contentType | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses important runtime behaviors beyond the annotations: that re-using a name creates a new immutable version, that omitting the name yields a random one, and that inlining large content streams through the model and times out. Annotations only declare readOnlyHint=false and destructiveHint=false, so these additions materially help an agent predict side effects and failure modes.
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 longer than average, but each sentence contributes: purpose, versioning behavior, random-name behavior, size threshold, shell alternative, why (timeout). It is front-loaded with the core action and uses no fluff, though it could be slightly tighter by trimming the inline example.
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?
The tool has an output schema, so return-value documentation is not required in the description. The description covers the essential operational constraints (size limits, alternatives, auth token for the fallback command) and the schema covers parameters and cross-file linking rules. Nothing needed for correct invocation 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?
Schema coverage is 100%, so the baseline is 3; the description adds extra meaning on top by explaining name-versioning semantics and the ~10KB practical limit for inline content, which the schema does not convey. It doesn't repeat every parameter, but the schema already covers files, content_type, visibility, and language in detail, so the incremental description value justifies a 4.
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 first sentence states a specific verb and resource: 'Create a document and return its public URL.' It also describes key behavioral facets (versioning on name reuse, random name generation), which makes the tool's function unmistakable against siblings get_doc and search_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?
The description explicitly tells the agent when NOT to use this tool ('content larger than ~10KB or any file already on disk, do NOT inline it here') and names a concrete alternative ('run `docbin push <file>` in your shell instead'), including the required DOCBIN_TOKEN setup. This is stronger than the typical 'use when...' guidance; it gives an exclusion plus a fallback.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_docARead-onlyInspect
Fetch the raw stored content of a document. Defaults to your own handle and the latest version.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Document name. | |
| handle | No | Owner handle. Defaults to the authenticated user. | |
| version | No | Version number. Defaults to the latest. |
Output Schema
| Name | Required | Description |
|---|---|---|
| name | Yes | |
| appUrl | Yes | |
| handle | Yes | |
| rawUrl | Yes | |
| deleted | No | |
| snippet | No | |
| version | Yes | |
| language | No | |
| visibility | No | |
| contentType | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
readOnlyHint=true already signals a safe read, and the description adds useful default behavior (own handle, latest version). It does not disclose failure modes, permission requirements, or return format specifics, though the output schema covers the latter. The added context is moderate but not extensive.
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 two concise sentences. The primary action and resource are front-loaded, and the default behavior is stated in a separate sentence. No filler or redundant framing exists.
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 read-only retrieval tool with an output schema and readOnlyHint annotation, the description covers the essential behavior and defaults. It could add explicit guidance distinguishing it from search_docs, but nothing critical for invoking this tool correctly 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?
Schema description coverage is 100%, so all three parameters are already documented. The description's mention of defaults ('Defaults to your own handle and the latest version') essentially repeats the schema descriptions, adding no new semantic information beyond what the schema provides.
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 uses a specific verb ('Fetch') and resource ('raw stored content of a document'), making it clear this retrieves document content. It distinguishes itself from sibling tools create_doc and search_docs by focusing on raw content retrieval rather than creation or searching.
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?
Usage is only implied: the tool fetches raw content, so it contrasts with searching or creating, but there is no explicit guidance on when to choose this over search_docs or whether it handles metadata lookups. No alternatives or exclusions are named.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_docsARead-onlyInspect
Search your documents by name. Returns matches with their URLs and latest versions.
| Name | Required | Description | Default |
|---|---|---|---|
| q | Yes | Search query matched against doc names. |
Output Schema
| Name | Required | Description |
|---|---|---|
| docs | Yes | |
| query | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnlyHint=true, so the agent knows this is safe and non-mutating. The description adds useful behavioral context about the return payload (URLs and latest versions) beyond what annotations provide. No contradictions with annotations.
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 short sentences, with the core action stated first and no filler. Every clause adds information—search scope and return contents. This is an appropriately concise definition.
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 single-parameter read-only search tool with an output schema present, the description covers the essential behavior and result contents. It doesn't detail match semantics (e.g., substring vs exact, case sensitivity), but those are not critical for a correct call. The tool is simple enough that this description is complete for an agent.
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 already fully documents the only parameter 'q' with 'Search query matched against doc names.' The description reinforces this with 'Search your documents by name' but doesn't add meaningful semantic detail beyond the schema. Baseline 3 is appropriate given 100% schema 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 clearly states a specific verb ('Search') and resource ('your documents') and narrows the search to 'by name.' It also mentions the return content (URLs and latest versions), which distinguishes it from the sibling tools create_doc and get_doc.
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 clear context: use this tool when searching for documents by name. It doesn't explicitly name alternatives or exclusions, but the sibling names (create_doc, get_doc) make the use case obvious. It lacks the explicit when-not-to-use guidance needed for a 5.
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.
3 tool updates
- First observed
create_doc - First observed
get_doc - First observed
search_docs
Related MCP Connectors
- uploads.shOAuthsh.uploads
Host files from coding agents; stage on a branch and attach to GitHub PRs.
Publish agent output to permanent versioned URLs, read review comments back, and revise.
Persistent file storage for AI agents via MCP and curl. Upload, download, and version files.
Publish HTML, files, or a URL to a permanent public URL, then update it — from any MCP agent.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceProvides versioned file storage for AI agents with immutable writes, auditing, and rollback capabilities.1-
- FlicenseNot gradedqualityDmaintenanceEnables multi-agent systems to store large tool outputs and share only artifact IDs between agents, with access control, TTL, and audit logging.-
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to upload temporary public review artifacts (screenshots, screen recordings) to Neon Storage and obtain shareable URLs for use in GitHub PR descriptions, issue comments, and agent reports.3MIT
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to store artifacts with versioning, share them via revocable links, and manage team templates.681,834 npmApache 2.0
Glama MCP Gateway
Add one secure layer between your agents and this server.