docspace-mcp
A room-based collaborative platform
Connect
Review any command before running it. Package names and URLs come from the server's own registry entry.
Remote (sse)
https://mcp.onlyoffice.com/sse Requires auth (checked 2026-09-24)
Claude Code:
claude mcp add --transport sse docspace-mcp https://mcp.onlyoffice.com/sse --header "X-Mcp-Dynamic: <YOUR_VALUE>" --header "X-Mcp-Toolsets: <YOUR_VALUE>" --header "X-Mcp-Enabled-Tools: <YOUR_VALUE>" --header "X-Mcp-Disabled-Tools: <YOUR_VALUE>" --header "X-Mcp-Base-Url: <YOUR_VALUE>" --header "X-Mcp-Api-Key: <YOUR_VALUE>" --header "X-Mcp-Auth-Token: <YOUR_VALUE>" --header "X-Mcp-Username: <YOUR_VALUE>" --header "X-Mcp-Password: <YOUR_VALUE>"
Or add to your MCP client config:
{
"mcpServers": {
"docspace-mcp": {
"url": "https://mcp.onlyoffice.com/sse",
"headers": {
"X-Mcp-Dynamic": "<YOUR_VALUE>",
"X-Mcp-Toolsets": "<YOUR_VALUE>",
"X-Mcp-Enabled-Tools": "<YOUR_VALUE>",
"X-Mcp-Disabled-Tools": "<YOUR_VALUE>",
"X-Mcp-Base-Url": "<YOUR_VALUE>",
"X-Mcp-Api-Key": "<YOUR_VALUE>",
"X-Mcp-Auth-Token": "<YOUR_VALUE>",
"X-Mcp-Username": "<YOUR_VALUE>",
"X-Mcp-Password": "<YOUR_VALUE>"
}
}
}
}
X-Mcp-Dynamic— The flag that indicates whether the MCP server should use meta tools.X-Mcp-Toolsets— The list of toolsets to enable for the MCP server.X-Mcp-Enabled-Tools— The list of tools to enable for the MCP server.X-Mcp-Disabled-Tools— The list of tools to disable for the MCP server.X-Mcp-Base-Url— The base URL of the DocSpace instance for API requests.X-Mcp-Api-Keysecret — The API key for accessing the API.X-Mcp-Auth-Tokensecret — The Personal Access Token (PAT) for accessing the API.X-Mcp-Username— The username for accessing the API using basic authentication.X-Mcp-Passwordsecret — The password for accessing the API using basic authentication.
Remote (streamable-http)
https://mcp.onlyoffice.com/mcp Requires auth (checked 2026-09-24)
Claude Code:
claude mcp add --transport http docspace-mcp https://mcp.onlyoffice.com/mcp --header "X-Mcp-Dynamic: <YOUR_VALUE>" --header "X-Mcp-Toolsets: <YOUR_VALUE>" --header "X-Mcp-Enabled-Tools: <YOUR_VALUE>" --header "X-Mcp-Disabled-Tools: <YOUR_VALUE>" --header "X-Mcp-Base-Url: <YOUR_VALUE>" --header "X-Mcp-Api-Key: <YOUR_VALUE>" --header "X-Mcp-Auth-Token: <YOUR_VALUE>" --header "X-Mcp-Username: <YOUR_VALUE>" --header "X-Mcp-Password: <YOUR_VALUE>"
Or add to your MCP client config:
{
"mcpServers": {
"docspace-mcp": {
"url": "https://mcp.onlyoffice.com/mcp",
"headers": {
"X-Mcp-Dynamic": "<YOUR_VALUE>",
"X-Mcp-Toolsets": "<YOUR_VALUE>",
"X-Mcp-Enabled-Tools": "<YOUR_VALUE>",
"X-Mcp-Disabled-Tools": "<YOUR_VALUE>",
"X-Mcp-Base-Url": "<YOUR_VALUE>",
"X-Mcp-Api-Key": "<YOUR_VALUE>",
"X-Mcp-Auth-Token": "<YOUR_VALUE>",
"X-Mcp-Username": "<YOUR_VALUE>",
"X-Mcp-Password": "<YOUR_VALUE>"
}
}
}
}
X-Mcp-Dynamic— The flag that indicates whether the MCP server should use meta tools.X-Mcp-Toolsets— The list of toolsets to enable for the MCP server.X-Mcp-Enabled-Tools— The list of tools to enable for the MCP server.X-Mcp-Disabled-Tools— The list of tools to disable for the MCP server.X-Mcp-Base-Url— The base URL of the DocSpace instance for API requests.X-Mcp-Api-Keysecret — The API key for accessing the API.X-Mcp-Auth-Tokensecret — The Personal Access Token (PAT) for accessing the API.X-Mcp-Username— The username for accessing the API using basic authentication.X-Mcp-Passwordsecret — The password for accessing the API using basic authentication.
Package (mcpb 3.2.0)
Package: mcpb https://github.com/ONLYOFFICE/docspace-mcp/releases/download/v3.2.0/onlyoffice-docspace-mcp-3.2.0.mcpb
DOCSPACE_BASE_URL— The base URL of the DocSpace instance for API requests.DOCSPACE_API_KEYsecret — The API key for accessing the API.
Package (npm 3.2.0)
npx -y @onlyoffice/[email protected]
Or add to your MCP client config:
{
"mcpServers": {
"docspace-mcp": {
"command": "npx",
"args": [
"-y",
"@onlyoffice/[email protected]"
],
"env": {
"DOCSPACE_TRANSPORT": "<YOUR_VALUE>",
"DOCSPACE_DYNAMIC": "<YOUR_VALUE>",
"DOCSPACE_TOOLSETS": "<YOUR_VALUE>",
"DOCSPACE_ENABLED_TOOLS": "<YOUR_VALUE>",
"DOCSPACE_DISABLED_TOOLS": "<YOUR_VALUE>",
"DOCSPACE_USER_AGENT": "<YOUR_VALUE>",
"DOCSPACE_BASE_URL": "<YOUR_VALUE>",
"DOCSPACE_AUTHORIZATION": "<YOUR_VALUE>",
"DOCSPACE_API_KEY": "<YOUR_VALUE>",
"DOCSPACE_AUTH_TOKEN": "<YOUR_VALUE>",
"DOCSPACE_USERNAME": "<YOUR_VALUE>",
"DOCSPACE_PASSWORD": "<YOUR_VALUE>"
}
}
}
}
DOCSPACE_TRANSPORT— The transport protocol to use for communication with the MCP server.DOCSPACE_DYNAMIC— The flag that indicates whether the MCP server should use meta tools.DOCSPACE_TOOLSETS— The list of toolsets to enable for the MCP server.DOCSPACE_ENABLED_TOOLS— The list of tools to enable for the MCP server.DOCSPACE_DISABLED_TOOLS— The list of tools to disable for the MCP server.DOCSPACE_USER_AGENT— The user agent to include in the User-Agent header for API requests.DOCSPACE_BASE_URL— The base URL of the DocSpace instance for API requests.DOCSPACE_AUTHORIZATIONsecret — The raw value to include in the Authorization header for API requests.DOCSPACE_API_KEYsecret — The API key for accessing the API.DOCSPACE_AUTH_TOKENsecret — The Personal Access Token (PAT) for accessing the API.DOCSPACE_USERNAME— The username for accessing the API using basic authentication.DOCSPACE_PASSWORDsecret — The password for accessing the API using basic authentication.
Package (npm 3.2.0)
Package: npm @onlyoffice/docspace-mcp
DOCSPACE_TRANSPORT— The transport protocol to use for communication with the MCP server.DOCSPACE_DYNAMIC— The flag that indicates whether the MCP server should use meta tools.DOCSPACE_TOOLSETS— The list of toolsets to enable for the MCP server.DOCSPACE_ENABLED_TOOLS— The list of tools to enable for the MCP server.DOCSPACE_DISABLED_TOOLS— The list of tools to disable for the MCP server.DOCSPACE_SESSION_TTL— The time-to-live (TTL) for HTTP sessions in milliseconds.DOCSPACE_SESSION_INTERVAL— The interval for checking HTTP sessions for expiration in milliseconds.DOCSPACE_USER_AGENT— The user agent to include in the User-Agent header for API requests.DOCSPACE_BASE_URL— The base URL of the DocSpace instance for API requests.DOCSPACE_AUTHORIZATIONsecret — The raw value to include in the Authorization header for API requests.DOCSPACE_API_KEYsecret — The API key for accessing the API.DOCSPACE_AUTH_TOKENsecret — The Personal Access Token (PAT) for accessing the API.DOCSPACE_USERNAME— The username for accessing the API using basic authentication.DOCSPACE_PASSWORDsecret — The password for accessing the API using basic authentication.DOCSPACE_OAUTH_BASE_URL— The base URL of the DocSpace OAuth service for OAuth requests.DOCSPACE_OAUTH_CLIENT_ID— The client ID of the OAuth application.DOCSPACE_OAUTH_CLIENT_SECRETsecret — The client secret of the OAuth application.DOCSPACE_OAUTH_AUTH_TOKEN_ALGORITHM— The algorithm to use for signing OAuth access tokens.DOCSPACE_OAUTH_AUTH_TOKEN_TTL— The time-to-live (TTL) for OAuth access tokens in milliseconds.DOCSPACE_OAUTH_AUTH_TOKEN_SECRET_KEYsecret — The secret key to use for signing OAuth access tokens.DOCSPACE_OAUTH_STATE_TOKEN_ALGORITHM— The algorithm to use for signing OAuth state tokens.DOCSPACE_OAUTH_STATE_TOKEN_TTL— The time-to-live (TTL) for OAuth state tokens in milliseconds.DOCSPACE_OAUTH_STATE_TOKEN_SECRET_KEYsecret — The secret key to use for signing OAuth state tokens.DOCSPACE_SERVER_BASE_URL— The base URL of the server.DOCSPACE_HOST— The host to bind the server to.DOCSPACE_PORT— The port to bind the server to.DOCSPACE_SERVER_PROXY_HOPS— The number of proxy servers between the server and the client.DOCSPACE_SERVER_CORS_MCP_ORIGIN— The list of allowed origins to include in the Access-Control-Allow-Origin header for CORS requests to MCP endpoints.DOCSPACE_SERVER_CORS_MCP_MAX_AGE— The maximum age in milliseconds to include in the Access-Control-Max-Age header for CORS requests to MCP endpoints.DOCSPACE_SERVER_CORS_OAUTH_ORIGIN— The list of allowed origins to include in the Access-Control-Allow-Origin header for CORS requests to OAuth endpoints.DOCSPACE_SERVER_CORS_OAUTH_MAX_AGE— The maximum age in milliseconds to include in the Access-Control-Max-Age header for CORS requests to OAuth endpoints.DOCSPACE_SERVER_RATE_LIMITS_MCP_CAPACITY— The maximum number of requests allowed per window for the MCP endpoints.DOCSPACE_SERVER_RATE_LIMITS_MCP_WINDOW— The time window in milliseconds for the rate limit for the MCP endpoints.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_SERVER_METADATA_CAPACITY— The maximum number of requests allowed per window for the OAuth server metadata endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_SERVER_METADATA_WINDOW— The time window in milliseconds for the rate limit for the OAuth server metadata endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_RESOURCE_METADATA_CAPACITY— The maximum number of requests allowed per window for the OAuth resource metadata endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_RESOURCE_METADATA_WINDOW— The time window in milliseconds for the rate limit for the OAuth resource metadata endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_AUTHORIZE_CAPACITY— The maximum number of requests allowed per window for the OAuth authorization endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_AUTHORIZE_WINDOW— The time window in milliseconds for the rate limit for the OAuth authorization endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_CALLBACK_CAPACITY— The maximum number of requests allowed per window for the OAuth callback endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_CALLBACK_WINDOW— The time window in milliseconds for the rate limit for the OAuth callback endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_INTROSPECT_CAPACITY— The maximum number of requests allowed per window for the OAuth introspection endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_INTROSPECT_WINDOW— The time window in milliseconds for the rate limit for the OAuth introspection endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_REGISTER_CAPACITY— The maximum number of requests allowed per window for the OAuth client registration endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_REGISTER_WINDOW— The time window in milliseconds for the rate limit for the OAuth client registration endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_REVOKE_CAPACITY— The maximum number of requests allowed per window for the OAuth token revocation endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_REVOKE_WINDOW— The time window in milliseconds for the rate limit for the OAuth token revocation endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_TOKEN_CAPACITY— The maximum number of requests allowed per window for the OAuth token endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_TOKEN_WINDOW— The time window in milliseconds for the rate limit for the OAuth token endpoint.DOCSPACE_REQUEST_QUERY— The flag that indicates whether the server should accept configuration via query parameters in incoming requests.DOCSPACE_REQUEST_AUTHORIZATION_HEADER— The flag that indicates whether the server should check for the Authorization header in incoming requests.DOCSPACE_REQUEST_HEADER_PREFIX— The prefix to use with custom configuration headers.
Package (npm 3.2.0)
Package: npm @onlyoffice/docspace-mcp
DOCSPACE_TRANSPORT— The transport protocol to use for communication with the MCP server.DOCSPACE_DYNAMIC— The flag that indicates whether the MCP server should use meta tools.DOCSPACE_TOOLSETS— The list of toolsets to enable for the MCP server.DOCSPACE_ENABLED_TOOLS— The list of tools to enable for the MCP server.DOCSPACE_DISABLED_TOOLS— The list of tools to disable for the MCP server.DOCSPACE_SESSION_TTL— The time-to-live (TTL) for HTTP sessions in milliseconds.DOCSPACE_SESSION_INTERVAL— The interval for checking HTTP sessions for expiration in milliseconds.DOCSPACE_USER_AGENT— The user agent to include in the User-Agent header for API requests.DOCSPACE_BASE_URL— The base URL of the DocSpace instance for API requests.DOCSPACE_AUTHORIZATIONsecret — The raw value to include in the Authorization header for API requests.DOCSPACE_API_KEYsecret — The API key for accessing the API.DOCSPACE_AUTH_TOKENsecret — The Personal Access Token (PAT) for accessing the API.DOCSPACE_USERNAME— The username for accessing the API using basic authentication.DOCSPACE_PASSWORDsecret — The password for accessing the API using basic authentication.DOCSPACE_OAUTH_BASE_URL— The base URL of the DocSpace OAuth service for OAuth requests.DOCSPACE_OAUTH_CLIENT_ID— The client ID of the OAuth application.DOCSPACE_OAUTH_CLIENT_SECRETsecret — The client secret of the OAuth application.DOCSPACE_OAUTH_AUTH_TOKEN_ALGORITHM— The algorithm to use for signing OAuth access tokens.DOCSPACE_OAUTH_AUTH_TOKEN_TTL— The time-to-live (TTL) for OAuth access tokens in milliseconds.DOCSPACE_OAUTH_AUTH_TOKEN_SECRET_KEYsecret — The secret key to use for signing OAuth access tokens.DOCSPACE_OAUTH_STATE_TOKEN_ALGORITHM— The algorithm to use for signing OAuth state tokens.DOCSPACE_OAUTH_STATE_TOKEN_TTL— The time-to-live (TTL) for OAuth state tokens in milliseconds.DOCSPACE_OAUTH_STATE_TOKEN_SECRET_KEYsecret — The secret key to use for signing OAuth state tokens.DOCSPACE_SERVER_BASE_URL— The base URL of the server.DOCSPACE_HOST— The host to bind the server to.DOCSPACE_PORT— The port to bind the server to.DOCSPACE_SERVER_PROXY_HOPS— The number of proxy servers between the server and the client.DOCSPACE_SERVER_CORS_MCP_ORIGIN— The list of allowed origins to include in the Access-Control-Allow-Origin header for CORS requests to MCP endpoints.DOCSPACE_SERVER_CORS_MCP_MAX_AGE— The maximum age in milliseconds to include in the Access-Control-Max-Age header for CORS requests to MCP endpoints.DOCSPACE_SERVER_CORS_OAUTH_ORIGIN— The list of allowed origins to include in the Access-Control-Allow-Origin header for CORS requests to OAuth endpoints.DOCSPACE_SERVER_CORS_OAUTH_MAX_AGE— The maximum age in milliseconds to include in the Access-Control-Max-Age header for CORS requests to OAuth endpoints.DOCSPACE_SERVER_RATE_LIMITS_MCP_CAPACITY— The maximum number of requests allowed per window for the MCP endpoints.DOCSPACE_SERVER_RATE_LIMITS_MCP_WINDOW— The time window in milliseconds for the rate limit for the MCP endpoints.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_SERVER_METADATA_CAPACITY— The maximum number of requests allowed per window for the OAuth server metadata endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_SERVER_METADATA_WINDOW— The time window in milliseconds for the rate limit for the OAuth server metadata endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_RESOURCE_METADATA_CAPACITY— The maximum number of requests allowed per window for the OAuth resource metadata endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_RESOURCE_METADATA_WINDOW— The time window in milliseconds for the rate limit for the OAuth resource metadata endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_AUTHORIZE_CAPACITY— The maximum number of requests allowed per window for the OAuth authorization endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_AUTHORIZE_WINDOW— The time window in milliseconds for the rate limit for the OAuth authorization endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_CALLBACK_CAPACITY— The maximum number of requests allowed per window for the OAuth callback endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_CALLBACK_WINDOW— The time window in milliseconds for the rate limit for the OAuth callback endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_INTROSPECT_CAPACITY— The maximum number of requests allowed per window for the OAuth introspection endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_INTROSPECT_WINDOW— The time window in milliseconds for the rate limit for the OAuth introspection endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_REGISTER_CAPACITY— The maximum number of requests allowed per window for the OAuth client registration endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_REGISTER_WINDOW— The time window in milliseconds for the rate limit for the OAuth client registration endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_REVOKE_CAPACITY— The maximum number of requests allowed per window for the OAuth token revocation endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_REVOKE_WINDOW— The time window in milliseconds for the rate limit for the OAuth token revocation endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_TOKEN_CAPACITY— The maximum number of requests allowed per window for the OAuth token endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_TOKEN_WINDOW— The time window in milliseconds for the rate limit for the OAuth token endpoint.DOCSPACE_REQUEST_QUERY— The flag that indicates whether the server should accept configuration via query parameters in incoming requests.DOCSPACE_REQUEST_AUTHORIZATION_HEADER— The flag that indicates whether the server should check for the Authorization header in incoming requests.DOCSPACE_REQUEST_HEADER_PREFIX— The prefix to use with custom configuration headers.
Package (oci)
docker run -i --rm docker.io/onlyoffice/docspace-mcp:3.2.0
Or add to your MCP client config:
{
"mcpServers": {
"docspace-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/onlyoffice/docspace-mcp:3.2.0"
],
"env": {
"DOCSPACE_TRANSPORT": "<YOUR_VALUE>",
"DOCSPACE_DYNAMIC": "<YOUR_VALUE>",
"DOCSPACE_TOOLSETS": "<YOUR_VALUE>",
"DOCSPACE_ENABLED_TOOLS": "<YOUR_VALUE>",
"DOCSPACE_DISABLED_TOOLS": "<YOUR_VALUE>",
"DOCSPACE_USER_AGENT": "<YOUR_VALUE>",
"DOCSPACE_BASE_URL": "<YOUR_VALUE>",
"DOCSPACE_AUTHORIZATION": "<YOUR_VALUE>",
"DOCSPACE_API_KEY": "<YOUR_VALUE>",
"DOCSPACE_AUTH_TOKEN": "<YOUR_VALUE>",
"DOCSPACE_USERNAME": "<YOUR_VALUE>",
"DOCSPACE_PASSWORD": "<YOUR_VALUE>"
}
}
}
}
DOCSPACE_TRANSPORT— The transport protocol to use for communication with the MCP server.DOCSPACE_DYNAMIC— The flag that indicates whether the MCP server should use meta tools.DOCSPACE_TOOLSETS— The list of toolsets to enable for the MCP server.DOCSPACE_ENABLED_TOOLS— The list of tools to enable for the MCP server.DOCSPACE_DISABLED_TOOLS— The list of tools to disable for the MCP server.DOCSPACE_USER_AGENT— The user agent to include in the User-Agent header for API requests.DOCSPACE_BASE_URL— The base URL of the DocSpace instance for API requests.DOCSPACE_AUTHORIZATIONsecret — The raw value to include in the Authorization header for API requests.DOCSPACE_API_KEYsecret — The API key for accessing the API.DOCSPACE_AUTH_TOKENsecret — The Personal Access Token (PAT) for accessing the API.DOCSPACE_USERNAME— The username for accessing the API using basic authentication.DOCSPACE_PASSWORDsecret — The password for accessing the API using basic authentication.
Package (oci)
Package: oci docker.io/onlyoffice/docspace-mcp:3.2.0
DOCSPACE_TRANSPORT— The transport protocol to use for communication with the MCP server.DOCSPACE_DYNAMIC— The flag that indicates whether the MCP server should use meta tools.DOCSPACE_TOOLSETS— The list of toolsets to enable for the MCP server.DOCSPACE_ENABLED_TOOLS— The list of tools to enable for the MCP server.DOCSPACE_DISABLED_TOOLS— The list of tools to disable for the MCP server.DOCSPACE_SESSION_TTL— The time-to-live (TTL) for HTTP sessions in milliseconds.DOCSPACE_SESSION_INTERVAL— The interval for checking HTTP sessions for expiration in milliseconds.DOCSPACE_USER_AGENT— The user agent to include in the User-Agent header for API requests.DOCSPACE_BASE_URL— The base URL of the DocSpace instance for API requests.DOCSPACE_AUTHORIZATIONsecret — The raw value to include in the Authorization header for API requests.DOCSPACE_API_KEYsecret — The API key for accessing the API.DOCSPACE_AUTH_TOKENsecret — The Personal Access Token (PAT) for accessing the API.DOCSPACE_USERNAME— The username for accessing the API using basic authentication.DOCSPACE_PASSWORDsecret — The password for accessing the API using basic authentication.DOCSPACE_OAUTH_BASE_URL— The base URL of the DocSpace OAuth service for OAuth requests.DOCSPACE_OAUTH_CLIENT_ID— The client ID of the OAuth application.DOCSPACE_OAUTH_CLIENT_SECRETsecret — The client secret of the OAuth application.DOCSPACE_OAUTH_AUTH_TOKEN_ALGORITHM— The algorithm to use for signing OAuth access tokens.DOCSPACE_OAUTH_AUTH_TOKEN_TTL— The time-to-live (TTL) for OAuth access tokens in milliseconds.DOCSPACE_OAUTH_AUTH_TOKEN_SECRET_KEYsecret — The secret key to use for signing OAuth access tokens.DOCSPACE_OAUTH_STATE_TOKEN_ALGORITHM— The algorithm to use for signing OAuth state tokens.DOCSPACE_OAUTH_STATE_TOKEN_TTL— The time-to-live (TTL) for OAuth state tokens in milliseconds.DOCSPACE_OAUTH_STATE_TOKEN_SECRET_KEYsecret — The secret key to use for signing OAuth state tokens.DOCSPACE_SERVER_BASE_URL— The base URL of the server.DOCSPACE_HOST— The host to bind the server to.DOCSPACE_PORT— The port to bind the server to.DOCSPACE_SERVER_PROXY_HOPS— The number of proxy servers between the server and the client.DOCSPACE_SERVER_CORS_MCP_ORIGIN— The list of allowed origins to include in the Access-Control-Allow-Origin header for CORS requests to MCP endpoints.DOCSPACE_SERVER_CORS_MCP_MAX_AGE— The maximum age in milliseconds to include in the Access-Control-Max-Age header for CORS requests to MCP endpoints.DOCSPACE_SERVER_CORS_OAUTH_ORIGIN— The list of allowed origins to include in the Access-Control-Allow-Origin header for CORS requests to OAuth endpoints.DOCSPACE_SERVER_CORS_OAUTH_MAX_AGE— The maximum age in milliseconds to include in the Access-Control-Max-Age header for CORS requests to OAuth endpoints.DOCSPACE_SERVER_RATE_LIMITS_MCP_CAPACITY— The maximum number of requests allowed per window for the MCP endpoints.DOCSPACE_SERVER_RATE_LIMITS_MCP_WINDOW— The time window in milliseconds for the rate limit for the MCP endpoints.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_SERVER_METADATA_CAPACITY— The maximum number of requests allowed per window for the OAuth server metadata endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_SERVER_METADATA_WINDOW— The time window in milliseconds for the rate limit for the OAuth server metadata endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_RESOURCE_METADATA_CAPACITY— The maximum number of requests allowed per window for the OAuth resource metadata endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_RESOURCE_METADATA_WINDOW— The time window in milliseconds for the rate limit for the OAuth resource metadata endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_AUTHORIZE_CAPACITY— The maximum number of requests allowed per window for the OAuth authorization endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_AUTHORIZE_WINDOW— The time window in milliseconds for the rate limit for the OAuth authorization endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_CALLBACK_CAPACITY— The maximum number of requests allowed per window for the OAuth callback endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_CALLBACK_WINDOW— The time window in milliseconds for the rate limit for the OAuth callback endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_INTROSPECT_CAPACITY— The maximum number of requests allowed per window for the OAuth introspection endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_INTROSPECT_WINDOW— The time window in milliseconds for the rate limit for the OAuth introspection endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_REGISTER_CAPACITY— The maximum number of requests allowed per window for the OAuth client registration endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_REGISTER_WINDOW— The time window in milliseconds for the rate limit for the OAuth client registration endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_REVOKE_CAPACITY— The maximum number of requests allowed per window for the OAuth token revocation endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_REVOKE_WINDOW— The time window in milliseconds for the rate limit for the OAuth token revocation endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_TOKEN_CAPACITY— The maximum number of requests allowed per window for the OAuth token endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_TOKEN_WINDOW— The time window in milliseconds for the rate limit for the OAuth token endpoint.DOCSPACE_REQUEST_QUERY— The flag that indicates whether the server should accept configuration via query parameters in incoming requests.DOCSPACE_REQUEST_AUTHORIZATION_HEADER— The flag that indicates whether the server should check for the Authorization header in incoming requests.DOCSPACE_REQUEST_HEADER_PREFIX— The prefix to use with custom configuration headers.
Package (oci)
Package: oci docker.io/onlyoffice/docspace-mcp:3.2.0
DOCSPACE_TRANSPORT— The transport protocol to use for communication with the MCP server.DOCSPACE_DYNAMIC— The flag that indicates whether the MCP server should use meta tools.DOCSPACE_TOOLSETS— The list of toolsets to enable for the MCP server.DOCSPACE_ENABLED_TOOLS— The list of tools to enable for the MCP server.DOCSPACE_DISABLED_TOOLS— The list of tools to disable for the MCP server.DOCSPACE_SESSION_TTL— The time-to-live (TTL) for HTTP sessions in milliseconds.DOCSPACE_SESSION_INTERVAL— The interval for checking HTTP sessions for expiration in milliseconds.DOCSPACE_USER_AGENT— The user agent to include in the User-Agent header for API requests.DOCSPACE_BASE_URL— The base URL of the DocSpace instance for API requests.DOCSPACE_AUTHORIZATIONsecret — The raw value to include in the Authorization header for API requests.DOCSPACE_API_KEYsecret — The API key for accessing the API.DOCSPACE_AUTH_TOKENsecret — The Personal Access Token (PAT) for accessing the API.DOCSPACE_USERNAME— The username for accessing the API using basic authentication.DOCSPACE_PASSWORDsecret — The password for accessing the API using basic authentication.DOCSPACE_OAUTH_BASE_URL— The base URL of the DocSpace OAuth service for OAuth requests.DOCSPACE_OAUTH_CLIENT_ID— The client ID of the OAuth application.DOCSPACE_OAUTH_CLIENT_SECRETsecret — The client secret of the OAuth application.DOCSPACE_OAUTH_AUTH_TOKEN_ALGORITHM— The algorithm to use for signing OAuth access tokens.DOCSPACE_OAUTH_AUTH_TOKEN_TTL— The time-to-live (TTL) for OAuth access tokens in milliseconds.DOCSPACE_OAUTH_AUTH_TOKEN_SECRET_KEYsecret — The secret key to use for signing OAuth access tokens.DOCSPACE_OAUTH_STATE_TOKEN_ALGORITHM— The algorithm to use for signing OAuth state tokens.DOCSPACE_OAUTH_STATE_TOKEN_TTL— The time-to-live (TTL) for OAuth state tokens in milliseconds.DOCSPACE_OAUTH_STATE_TOKEN_SECRET_KEYsecret — The secret key to use for signing OAuth state tokens.DOCSPACE_SERVER_BASE_URL— The base URL of the server.DOCSPACE_HOST— The host to bind the server to.DOCSPACE_PORT— The port to bind the server to.DOCSPACE_SERVER_PROXY_HOPS— The number of proxy servers between the server and the client.DOCSPACE_SERVER_CORS_MCP_ORIGIN— The list of allowed origins to include in the Access-Control-Allow-Origin header for CORS requests to MCP endpoints.DOCSPACE_SERVER_CORS_MCP_MAX_AGE— The maximum age in milliseconds to include in the Access-Control-Max-Age header for CORS requests to MCP endpoints.DOCSPACE_SERVER_CORS_OAUTH_ORIGIN— The list of allowed origins to include in the Access-Control-Allow-Origin header for CORS requests to OAuth endpoints.DOCSPACE_SERVER_CORS_OAUTH_MAX_AGE— The maximum age in milliseconds to include in the Access-Control-Max-Age header for CORS requests to OAuth endpoints.DOCSPACE_SERVER_RATE_LIMITS_MCP_CAPACITY— The maximum number of requests allowed per window for the MCP endpoints.DOCSPACE_SERVER_RATE_LIMITS_MCP_WINDOW— The time window in milliseconds for the rate limit for the MCP endpoints.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_SERVER_METADATA_CAPACITY— The maximum number of requests allowed per window for the OAuth server metadata endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_SERVER_METADATA_WINDOW— The time window in milliseconds for the rate limit for the OAuth server metadata endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_RESOURCE_METADATA_CAPACITY— The maximum number of requests allowed per window for the OAuth resource metadata endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_RESOURCE_METADATA_WINDOW— The time window in milliseconds for the rate limit for the OAuth resource metadata endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_AUTHORIZE_CAPACITY— The maximum number of requests allowed per window for the OAuth authorization endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_AUTHORIZE_WINDOW— The time window in milliseconds for the rate limit for the OAuth authorization endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_CALLBACK_CAPACITY— The maximum number of requests allowed per window for the OAuth callback endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_CALLBACK_WINDOW— The time window in milliseconds for the rate limit for the OAuth callback endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_INTROSPECT_CAPACITY— The maximum number of requests allowed per window for the OAuth introspection endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_INTROSPECT_WINDOW— The time window in milliseconds for the rate limit for the OAuth introspection endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_REGISTER_CAPACITY— The maximum number of requests allowed per window for the OAuth client registration endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_REGISTER_WINDOW— The time window in milliseconds for the rate limit for the OAuth client registration endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_REVOKE_CAPACITY— The maximum number of requests allowed per window for the OAuth token revocation endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_REVOKE_WINDOW— The time window in milliseconds for the rate limit for the OAuth token revocation endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_TOKEN_CAPACITY— The maximum number of requests allowed per window for the OAuth token endpoint.DOCSPACE_SERVER_RATE_LIMITS_OAUTH_TOKEN_WINDOW— The time window in milliseconds for the rate limit for the OAuth token endpoint.DOCSPACE_REQUEST_QUERY— The flag that indicates whether the server should accept configuration via query parameters in incoming requests.DOCSPACE_REQUEST_AUTHORIZATION_HEADER— The flag that indicates whether the server should check for the Authorization header in incoming requests.DOCSPACE_REQUEST_HEADER_PREFIX— The prefix to use with custom configuration headers.
Related servers
browser-use
Control a real Chrome browser to complete any task: fill forms, extract data, book flights.
servers
MCP server that exercises all the features of the MCP protocol
World Monitor
Live markets, conflicts, country risk, chokepoints, energy, and China decision signals. 75 tools.
paperclip
Trending hip-hop artist momentum scores across four cultural dimensions.
ruflo
AI orchestration with hive-mind swarms, neural networks, and 87 MCP tools for enterprise dev.
Chrome DevTools MCP
MCP server for Chrome DevTools
Data from the Official MCP Registry