by ONLYOFFICE
Provides a Model Context Protocol (MCP) server that exposes ONLYOFFICE DocSpace functionality as a set of tools, enabling large language models to perform file, folder, user, and room operations within a DocSpace instance.
The server implements the Model Context Protocol for ONLYOFFICE DocSpace, exposing operations such as file upload, folder management, user lookup, and room administration as discrete tools that can be invoked by LLMs.
mcpServers with the required environment variables (DOCSPACE_BASE_URL, DOCSPACE_API_KEY).npx --yes @onlyoffice/docspace-mcp.stdio; HTTP transport can be enabled by setting DOCSPACE_TRANSPORT=http and configuring host/port.DOCSPACE_TOOLSETS, DOCSPACE_ENABLED_TOOLS, and DOCSPACE_DISABLED_TOOLS.DOCSPACE_DYNAMIC=true to wrap all tools into meta‑tools (call_tool, list_tools, etc.).stdio for direct integration, http for networked access).npx command.npx.DOCSPACE_API_KEY), personal access token (DOCSPACE_AUTH_TOKEN), or basic auth (DOCSPACE_USERNAME/DOCSPACE_PASSWORD).DOCSPACE_TRANSPORT=http and configure DOCSPACE_HOST and DOCSPACE_PORT.files, folders, people, rooms) are enabled unless overridden by configuration.Model Context Protocol (MCP) is a standardized protocol for managing context between large language models (LLMs) and external systems. This repository provides an MCP server for ONLYOFFICE DocSpace.
[!WARNING]
This DocSpace MCP server is currently in preview state. While functional, it may undergo breaking changes, have incomplete features, or contain bugs. Use with caution in production environments and expect potential updates that could affect compatibility.
{
"mcpServers": {
"onlyoffice-docspace": {
"command": "docker",
"args": ["run", "onlyoffice/docspace-mcp", "--interactive", "--rm", "--env", "DOCSPACE_BASE_URL", "--env", "DOCSPACE_API_KEY"],
"env": {
"DOCSPACE_BASE_URL": "https://your-instance.onlyoffice.com",
"DOCSPACE_API_KEY": "your-api-key"
}
}
}
}
The documentation is available in the docs directory.
The DocSpace MCP server is distributed under the Apache-2.0 license found in the LICENSE file.
Please log in to share your review and rating for this MCP.
Explore related MCPs that share similar capabilities and solve comparable challenges
by modelcontextprotocol
A Model Context Protocol server for Git repository interaction and automation.
by zed-industries
A high‑performance, multiplayer code editor designed for speed and collaboration.
by modelcontextprotocol
Model Context Protocol Servers
by modelcontextprotocol
A Model Context Protocol server that provides time and timezone conversion capabilities.
by cline
An autonomous coding assistant that can create and edit files, execute terminal commands, and interact with a browser directly from your IDE, operating step‑by‑step with explicit user permission.
by upstash
Provides up-to-date, version‑specific library documentation and code examples directly inside LLM prompts, eliminating outdated information and hallucinated APIs.
by daytonaio
Provides a secure, elastic infrastructure that creates isolated sandboxes for running AI‑generated code with sub‑90 ms startup, unlimited persistence, and OCI/Docker compatibility.
by continuedev
Enables faster shipping of code by integrating continuous AI agents across IDEs, terminals, and CI pipelines, offering chat, edit, autocomplete, and customizable agent workflows.
by github
Connects AI tools directly to GitHub, enabling natural‑language interactions for repository browsing, issue and pull‑request management, CI/CD monitoring, code‑security analysis, and team collaboration.
{
"mcpServers": {
"onlyoffice-docspace": {
"command": "npx",
"args": [
"--yes",
"@onlyoffice/docspace-mcp"
],
"env": {
"DOCSPACE_BASE_URL": "<YOUR_DOCSPACE_INSTANCE_URL>",
"DOCSPACE_API_KEY": "<YOUR_API_KEY>"
}
}
}
}claude mcp add onlyoffice-docspace npx --yes @onlyoffice/docspace-mcp