MCP.so
Sign In

DocBase MCP Server

@f440

About DocBase MCP Server

MCP Server Implementation for DocBase

Basic information

Category

Other

Transports

stdio

Publisher

f440

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "docbase-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@f440/docbase-mcp-server"
      ],
      "env": {
        "DOMAIN": "<YOUR_DOMAIN>",
        "TOKEN": "<YOUR_TOKEN>"
      }
    }
  }
}

Tools

2

Get posts from DocBase.

Get a specific post from DocBase.

Overview

What is DocBase MCP Server?

An MCP server that provides tools to interact with the DocBase API, specifically to retrieve posts from a DocBase team. It is intended for developers who want to integrate DocBase content into MCP‑compatible clients.

How to use DocBase MCP Server?

Configure the server in your MCP client by adding the following entry under mcpServers, setting the DOMAIN (your DocBase team domain) and TOKEN (a DocBase API access token) environment variables. The server is run via npx -y @f440/docbase-mcp-server.

Key features of DocBase MCP Server

  • Get all posts from DocBase.
  • Get a specific post by its identifier.

Use cases of DocBase MCP Server

FAQ from DocBase MCP Server

What tools does DocBase MCP Server provide?

It provides get_posts to retrieve all posts and get_post to retrieve a single specific post.

How do I obtain the DOMAIN and TOKEN?

The DOMAIN is your DocBase team domain (e.g., myteam if your URL is myteam.docbase.io). The TOKEN is an access token generated from your DocBase settings; see the DocBase help article at https://help.docbase.io/posts/45703 for instructions.

Is there any local installation required?

No. The server is run on demand via npx, which automatically fetches the package from npm. No manual installation is needed.

What runtime dependencies are required?

Node.js must be installed on the machine to run npx. The server itself is a Node.js package.

Comments

More Other MCP servers