Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

docbase-mcp-server

MCP.Pizza Chef: f440

The docbase-mcp-server is an MCP server implementation that enables seamless interaction with the DocBase API. It allows users to fetch posts and specific post details from DocBase, facilitating integration of DocBase content into MCP-enabled workflows. Setup requires configuring your DocBase team domain and API token, making it easy to connect and retrieve documentation posts programmatically.

Use This MCP server To

Fetch all posts from a DocBase team workspace Retrieve detailed content of a specific DocBase post Integrate DocBase documentation into AI workflows Automate documentation retrieval for knowledge management Enable LLMs to query DocBase content in real time

README

Warning

This repository is archived. Please use Official Version instead.

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

docbase-mcp-server FAQ

How do I configure the docbase-mcp-server?
Set the DOMAIN to your DocBase team domain and TOKEN to your API access token in the environment variables.
Where do I get the DOMAIN and TOKEN for DocBase?
DOMAIN is your team subdomain (e.g., myteam in myteam.docbase.io). TOKEN is generated from your DocBase account settings under API tokens.
What API operations does this MCP server support?
It supports fetching all posts and retrieving specific posts from DocBase.
Is the docbase-mcp-server open source?
Yes, it is licensed under the MIT license and available on GitHub.
Can I use this server with multiple MCP clients?
Yes, it is designed to be compatible with any MCP client that supports server integration.
What LLM providers can I use with this MCP server?
It works with OpenAI, Anthropic Claude, Google Gemini, and other MCP-compatible LLMs.
How do I install the docbase-mcp-server?
Use the command 'npx -y @f440/docbase-mcp-server' with the appropriate environment variables set.