Docspace MCP Server

ONLYOFFICE DocSpace Model Context Protocol Server

Remote serverstreamable-http

What is the Docspace MCP MCP server?

Most cloud and infrastructure work still happens through a UI a human drives. Docspace MCP MCP server moves it into the conversation instead. ONLYOFFICE DocSpace Model Context Protocol Server.

The short version

[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].

  • Tools with granular control — - Access to tools organized into logical
  • Multiple transport protocols — - Support for stdio, SSE, and Streamable HTTP
  • Different authentication methods — - Supports API keys, Personal Access
  • Request-level configuration — - Configure authentication and tool selection
  • Various distribution formats — - Available as Docker image, [Docker MCP

What it needs from you

Configuration is passed through the environment: DOCSPACE_BASE_URL, DOCSPACE_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

How it compares

Plenty of cloud and infrastructure servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. It is maintained by ONLYOFFICE; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How to install the Docspace MCP MCP server

{
	"mcpServers": {
		"onlyoffice-docspace": {
			"command": "docker",
			"args": [
				"run",
				"--interactive",
				"--rm",
				"--env",
				"DOCSPACE_BASE_URL",
				"--env",
				"DOCSPACE_API_KEY",
				"onlyoffice/docspace-mcp"
			],
			"env": {
				"DOCSPACE_BASE_URL": "https://your-instance.onlyoffice.com",
				"DOCSPACE_API_KEY": "your-api-key"
			}
		}
	}
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
DOCSPACE_BASE_URLEndpoint or connection string the server talks to.Yes
DOCSPACE_API_KEYCredential the server authenticates with.Yes

Frequently asked questions

It connects Docspace MCP to MCP-compatible AI assistants such as Claude and Cursor. Instead of copying data back and forth by hand, the assistant works with Docspace MCP directly.