AR

Archbee

Created 5 months ago

This is a Model Context Protocol (MCP) server for interacting with the Archbee API.

development location documentation public

What is Archbee?

Write and publish documentation that becomes the trusted source for instant answers with AI. Stop cobbling tools and use [Archbee](https://www.archbee.com/) — the first complete documentation platform.

Documentation

Archbee MCP Server

This is a Model Context Protocol (MCP) server for interacting with the Archbee API. This server provides tools to read, search and list Archbee documents from your space using Large Language Models.

Tools

  • get-doc: Gets content of a document
  • Input: id (string): Archbee id
  • Returns: Content as markdown
  • get-all-docs: Gets content of all documents in space
  • Returns: documents, as DocResponse[]
  • search-query: Search docs by input query
  • Input: query (string): text as part of documents to search
  • Returns: documents containing query, as DocResponse[]
  • search-title: Search docs by input title
  • Input: query (string): text as part of titles to search
  • Returns: documents with title containing query, as DocResponse[]

Setup

Add this server to your claude_desktop_config.json or .cursor/mcp.json

Environment Variables

  • API_BASE: Link to your Archbee portal
  • API_KEY: Your Archbee API token for corresponding Space

You can get an API token from Space Settings in Archbee app. Your space must be published with that apiKey.

Example Configuration

{
  "mcpServers": {
    "archbee": {
      "command": "npx",
      "args": ["-y", "@archbee/mcp"],
      "env": {
        "API_BASE": "https://your-docs.io/",
        "API_KEY": "<api-key-for-your-docspace>"
      }
    }
  }
}

Server Config

{
  "mcpServers": {
    "archbee-server": {
      "command": "npx",
      "args": [
        "archbee"
      ]
    }
  }
}

Links & Status

Repository: www.npmjs.com
Hosted: No
Global: No
Official: Yes

Project Info

Hosted Featured
Created At: Jul 02, 2025
Updated At: Aug 07, 2025
Author: dragosbulugean, parchbee, ioan.maracineanu
Category: official
License: none
Tags:
development location documentation