Skip to main content
Glama

Server Details

Give an agent a place to put large output. Instead of returning 40k characters of a build log into the conversation, it posts the file to docbin and hands back one short URL. Docs render with syntax highlighting and markdown, every update is a new immutable version, and old links keep working. Six tools for create, read, update, delete, list and search. Works anonymously with no signup, or sign in for permanent docs under your own handle.

Ownership verified
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Available Tools

3 tools
create_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.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameNoDocument name. A random slug is generated if omitted.
filesNoOptional: 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.
contentNoThe HTML, Markdown, MDX, or code body of the document.
languageNoSyntax-highlight language hint, used when content_type is 'code' (e.g. 'rust').
visibilityNoDefaults to public. private = owner only; unlisted = anyone with the link; public = listed, searchable, and crawlable.
content_typeNoDefaults to html. 'mdx' renders Markdown with JSX components; 'code' renders a single syntax-highlighted block.

Output Schema

ParametersJSON Schema
NameRequiredDescription
nameYes
appUrlYes
handleYes
rawUrlYes
deletedNo
snippetNo
versionYes
languageNo
visibilityNo
contentTypeNo

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The annotations only say this is not read-only, so the description carries the behavioral burden. It discloses versioning behavior ('adds a new immutable version'), random name generation when omitted, and a concrete timeout risk for large content. These are non-obvious traits beyond the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences with no filler; the main purpose and key behavioral facts are front-loaded, and the size warning is delivered with a clear command alternative. The shell command is long but earns its place by preventing timeouts.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the output schema exists and the parameter schema covers every parameter, the description covers the remaining gaps: creation semantics, versioning, return behavior, and a clear failure mode. The sibling tool context makes the overall picture complete for an agent deciding between create, get, and search.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already documents all six parameters (100% coverage), so the baseline is 3. The description adds value beyond that by explaining name reuse creates immutable versions, linking content-size limits to the content/files parameters, and noting omission generates a random slug. It does not duplicate the schema's detailed param descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and object: 'Create a document and return its public URL.' It clearly identifies the resource and distinguishes this write operation from the read-only siblings get_doc and search_docs without ambiguity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states when NOT to use the tool ('content larger than ~10KB or any file already on disk') and names the exact alternative command (`docbin push`). This gives an agent actionable routing criteria and a fallback path.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_docA
Read-only
Inspect

Fetch the raw stored content of a document. Defaults to your own handle and the latest version.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesDocument name.
handleNoOwner handle. Defaults to the authenticated user.
versionNoVersion number. Defaults to the latest.

Output Schema

ParametersJSON Schema
NameRequiredDescription
nameYes
appUrlYes
handleYes
rawUrlYes
deletedNo
snippetNo
versionYes
languageNo
visibilityNo
contentTypeNo

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, so the read-only nature is covered. The description adds useful behavioral context by stating that the content is 'raw stored content' and that handle/version default to your own and latest respectively, which helps the agent predict the tool's behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two short sentences with no filler. The core action is front-loaded, followed by the most important default behaviors, making it easy to scan and understand.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple, has full parameter documentation, a read-only annotation, and an output schema. The description, plus the structured data, gives an agent everything needed to invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all three parameters (name, handle, version) are already documented in the schema. The description only restates the default behavior for handle and version, adding no extra meaning beyond the structured parameter descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Fetch') and a clear resource ('raw stored content of a document'), which precisely identifies the operation. This distinguishes it from siblings like create_doc and search_docs without ambiguity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description makes the basic usage clear: fetch a document's raw content, defaulting to your own handle and the latest version. However, it does not explicitly mention when to prefer this over search_docs or create_doc, leaving that comparison implied rather than stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_docsA
Read-only
Inspect

Search your documents by name. Returns matches with their URLs and latest versions.

ParametersJSON Schema
NameRequiredDescriptionDefault
qYesSearch query matched against doc names.

Output Schema

ParametersJSON Schema
NameRequiredDescription
docsYes
queryNo

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, so safety is covered. The description adds that matching is by name and that results include URLs and latest versions, but it does not disclose possible limitations such as pagination, result caps, or exact/partial matching behavior. This is acceptable 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence with no filler. The core action is front-loaded, and the return value summary is given in a compact clause.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

This is a simple read-only search tool with one well-documented parameter and an output schema present. The description covers the main behavior and return contents. It could be slightly more complete with explicit alternative guidance, but nothing essential is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already documents q as 'Search query matched against doc names' with 100% coverage. The description reinforces the name-matching semantics but adds no new details about query syntax, formatting, or edge cases beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action ('Search your documents by name') and the resource, and additionally specifies what is returned ('matches with their URLs and latest versions'). This clearly 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.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The use case is clear: search documents by name. However, it does not explicitly explain when to prefer this over get_doc or create_doc, nor does it state exclusions such as 'this does not search document contents.' Still, the described behavior provides adequate context for selection.

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. Dates show when Glama detected each change.

  1. 3 tool updates
    • First observedcreate_doc
    • First observedget_doc
    • First observedsearch_docs

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables detection and analysis of pre-public product launches through web search, content extraction, AI-powered scoring, and automated alerting. Provides comprehensive tools for surfacing stealth startup signals before they trend publicly.
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Browse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI chat clients to perform market research and competitive intelligence by gathering company overviews, competitor lists, product portfolios, pricing snapshots, and recent news via live Tavily search.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation5/5

Each tool targets a distinct operation: create, retrieve, and search. There is no overlap between the actions, and the descriptions reinforce their differing purposes.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern: create_doc, get_doc, search_docs. The only slight variation is singular 'doc' versus plural 'docs', which does not harm predictability.

Tool Count5/5

Three tools is a reasonable, focused set for a document storage service. Each tool handles a distinct core need and none feel redundant or unnecessary.

Completeness4/5

The core document lifecycle of create, read, and search is covered, with versioning handled through create. A minor gap is the absence of a delete or full list-all operation, though agents can likely work around that for most workflows.

Resources