DocBase MCP Server

by f440

226 downloads
Not rated
GitHub

About

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.

Details

Author
f440
Downloads
226
Categories
Other, AI

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

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name DocBase MCP Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

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.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

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

McpServers

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

DocBase MCP Server

An MCP server implementation for interacting with the DocBase API.

Features

- Get posts from DocBase

Tools

- get_posts: Get posts from DocBase.
- get_post: Get a specific post from DocBase.

Setup

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

Getting DOMAIN and TOKEN

1. DOMAIN: Your DocBase team domain (e.g., myteam in myteam.docbase.io).
2. TOKEN: Access token for the DocBase API. You can generate a token from your DocBase settings. See document for details.

License

MIT

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.