This server provides read-only access to Document360 knowledge base content through the Model Context Protocol (MCP). You can:
• List Project Versions - Retrieve all available project versions from your Document360 knowledge base • Search Within Projects - Search for articles and categories within a specific project version • Get Category Details - Fetch category information including name, description, articles, and metadata using the Category ID • Get Page Content - Retrieve full page content (HTML/text and formatting) for a specific page using both Category ID and Page ID • Get Article Details - Access complete article information including title, content, tags, and metadata using the Article ID
All operations require Document360 API credentials and work with UUID identifiers. This minimal implementation supports a basic discovery and retrieval workflow for exploring and reading Document360 knowledge base content.
Document360 MCP Server
A very simple Model Context Protocol (MCP) server for accessing Document360 knowledge base content via GET operations. Built with FastMCP. This MCP is intended to be the bare minimun required to be able to find and read pages in Document360's knowledge base.
Features
Get Category by ID
Get Category Page Content by ID
Get Article by ID
Search in Project Versions
List Project Versions
Requirements
Python 3.8+
Document360 API key
Installation
Clone or download this repository, then install dependencies:
or using a virtual environment:
or using UV
Configuration
Set your Document360 API key and other environment variables. You can do this in your shell or directly in the mcp-config.json file:
Note: the default base URL is https://apihub.document360.io, but some accounts require to use the regional base url https://apihub.us.document360.io.
Usage
Run the server directly:
Or with UV:
Exposed MCP Tools
Although Document360 exposes more granular endpoints, these are sufficient for a simple consumption workflow: models can discover project versions, enumerate categories and pages, and retrieve full page contents.
get_category_page_content Parameters:
category_id(UUID string): Document360 category IDpage_id(UUID string): Document360 page ID
get_article Parameters:
article_id(UUID string): Document360 article ID
search_in_project Parameters:
project_version_id(UUID string): Document360 project version ID
list_project_versions Parameters: none
get_category Parameters:
category_id(UUID string): Document360 category ID
License
MIT