Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
DOCUMENT360_API_KEY | Yes | Your Document360 API key | |
DOCUMENT360_BASE_URL | No | The Document360 API URL | https://apihub.document360.io |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
get_category_page_content | Get category page content by ID from Document360 Args: category_id: The Document360 category ID (e.g., 'rtt2a758-82a7-4dd0-a7c7-0a9ad04881d0') page_id: The Document360 page ID (e.g., 'rtt2a758-82a7-4dd0-a7c7-0a9ad04881d0') Returns: Full page content including HTML/text content and formatting |
get_article | Get article by ID from Document360 Args: article_id: The Document360 article ID (e.g., 'rtt2a758-82a7-4dd0-a7c7-0a9ad04881d0') Returns: Article information including title, content, tags, and metadata |
search_in_project | Search inside a project version and return related articles/categories in Document360 Args: project_version_id: The project version ID Returns: List of hits (articles/categories) from the project version search endpoint |
get_category | Get category by ID from Document360 Args: category_id: The Document360 category ID (e.g., 'rtt2a758-82a7-4dd0-a7c7-0a9ad04881d0') Returns: Category information including name, description, articles, and metadata |
list_project_versions | List all project versions from Document360 Args: ctx: MCP context for logging and error handling Returns: List of project versions |