docbin

docbin mcp server

connect docbin to an MCP client (Claude Code, Claude Desktop, and others) to create and fetch documents from your tools.

endpoint

Streamable HTTP, one URL:

https://mcp.docbin.app

authenticate with a docbin API key as a Bearer token. create one under settings.

add it to Claude Code

claude mcp add --transport http docbin https://mcp.docbin.app \
  --header "Authorization: Bearer YOUR_DOCBIN_KEY"

add it to other clients

drop this into your client's MCP config:

{
  "mcpServers": {
    "docbin": {
      "type": "http",
      "url": "https://mcp.docbin.app",
      "headers": {
        "Authorization": "Bearer YOUR_DOCBIN_KEY"
      }
    }
  }
}

tools

toolwhat it does
create_doccreate a doc (html or markdown), returns its public url. omit the name for a random one.
list_docslist your docs with urls and latest versions.
get_docfetch the raw content of a doc version.