8000 GitHub - ONLYOFFICE/docspace-mcp: DocSpace MCP Server
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

ONLYOFFICE/docspace-mcp

Repository files navigation

ONLYOFFICE DocSpace MCP Server

Open in VS Code using npx command Open in VS Code Insiders using npx command

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 ONLYOFFICE 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.

Installation

Most clients that implement the MCP protocol have a common configuration file in JSON format, inside which you can add ONLYOFFICE DocSpace MCP server as follows:

{
	"mcpServers": {
		"onlyoffice-docspace": {
			"env": {
				"DOCSPACE_BASE_URL": "https://your-instance.onlyoffice.com",
				"DOCSPACE_API_KEY": "your-api-key"
			},
			"command": "npx",
			"args": ["--yes", "@onlyoffice/docspace-mcp"]
		}
	}
}

For a more detailed example of the MCP server installation process, see how it can be done using Claude Desktop.

Configuration

The only way to configure ONLYOFFICE DocSpace MCP server is through environment variables. Below is an example of the .env file with possible configuration options:

# The base URL of the DocSpace instance for API requests.
# Type: URL
# Presence: Required
# Example: https://your-instance.onlyoffice.com
DOCSPACE_BASE_URL=

# The origin URL to include in the Origin header for DocSpace API requests.
# Type: URL
# Presence: Optional
# Example: https://your-instance.onlyoffice.com
DOCSPACE_ORIGIN=

# The user agent to include in the User-Agent header for DocSpace API requests.
# Type: String
# Presence: Optional
# Default: @onlyoffice/docspace-mcp v1.3.0
DOCSPACE_USER_AGENT=

# The API key for accessing the DocSpace API.
# Type: String
# Presence:
#   Required if nether DOCSPACE_AUTH_TOKEN nor DOCSPACE_USERNAME and
#   DOCSPACE_PASSWORD are provided.
# Example: sk-a499e...
DOCSPACE_API_KEY=

# The Personal Access Token (PAT) for accessing the DocSpace API.
# Type: String
# Presence:
#   Required if neither DOCSPACE_API_KEY nor DOCSPACE_USERNAME and
#   DOCSPACE_PASSWORD are provided.
# Example: Fe4Hrgl6...
DOCSPACE_AUTH_TOKEN=

# The username for accessing the DocSpace API using basic authentication.
# Type: String
# Presence:
#   Required if neither DOCSPACE_API_KEY nor DOCSPACE_AUTH_TOKEN are provided.
#   This configuration is used in conjunction with DOCSPACE_PASSWORD.
# Example: henry.milton@onlyoffice.com
DOCSPACE_USERNAME=

# The password for accessing the DocSpace API using basic authentication.
# Type: String
# Presence:
#   Required if neither DOCSPACE_API_KEY nor DOCSPACE_AUTH_TOKEN are provided.
#   This configuration is used in conjunction with DOCSPACE_USERNAME.
# Example: ditgor-p...
DOCSPACE_PASSWORD=

# Whether to enable dynamic tools.
# Type: Boolean
# Presence: Optional
# Default: false
DOCSPACE_DYNAMIC=

# The list of toolsets to use or 'all' to use all available toolsets.
# Type: Comma-separated list of strings
# Presence: Optional
# Default: all
DOCSPACE_TOOLSETS=

Usage

Model Context Protocol describes several different concepts, however ONLYOFFICE DocSpace MCP server implements Tools only.

Toolsets

In addition to the existing concept of Tools, ONLYOFFICE DocSpace MCP server introduces a new one, Toolsets. A Toolset is a set of related tools. Using the DOCSPACE_TOOLSETS configuration option, you can specify the tools from selected toolsets that will be available in ONLYOFFICE DocSpace MCP server. Below is a table with the names of available toolsets and their descriptions:

# Name Description
1 files Operations for working with files, folders, and rooms.
2 others Operations for listing additional enumeration values. Operations for downloading and uploading files.
3 people Operations for working with users.
4 portal Operations for working with the portal.
5 settings Operations for working with settings.

Meta Tools

In some cases, directly connecting all available tools can be problematic. Using the DOCSPACE_DYNAMIC configuration option, you can wrap all available tools into meta-tools. Meta-tools are tools that allow an AI model to interact with other tools dynamically without loading them all simultaneously. Below is a table with the names of available meta-tools and their descriptions:

# Name Description
1 call_tool This is a meta-tool for calling a tool. The list of available tools can be obtained using the list_tools meta-tool. The input schema can be obtained using the get_tool_input_schema meta-tool.
2 get_tool_input_schema This is a meta-tool for getting an input schema for a specific tool. The list of available tools can be obtained using the list_tools meta-tool.
3 list_tools This is a meta-tool for listing available tools of a specific toolset. The list of available toolsets can be obtained using the list_toolsets meta-tool.
4 list_toolsets This is a meta-tool for listing available toolsets. Toolset is a set of available tools.

Tools

Below is a table with the names of available tools and their descriptions:

# Name Description
1 files_archive_room Archive a room.
2 files_copy_batch_items Copy to a folder.
3 files_create_folder Create a folder.
4 files_create_room Create a room.
5 files_delete_file Delete a file.
6 files_delete_folder Delete a folder.
7 files_get_file_info Get file information.
8 files_get_folder Get content of a folder.
9 files_get_folder_info Get folder information.
10 files_get_folders Get subfolders of a folder.
11 files_get_my_folder Get the 'My Documents' folder.
12 files_get_operation_statuses Get active file operations.
13 files_get_room_info Get room information.
14 files_get_room_security_info Get a list of users with their access levels to a room.
15 files_get_rooms_folder Get the 'Rooms' folder.
16 files_move_batch_items Move to a folder.
17 files_rename_folder Rename a folder.
18 files_set_room_security Invite or remove users from a room.
19 files_update_file Update a file.
20 files_update_room Update a room.
21 others_download_as_text Download a file as text.
22 others_get_available_room_access Get a list of available room invitation access levels.
23 others_get_available_room_types Get a list of available room types.
24 others_upload_file Upload a file.
25 people_get_all Get all people.
26 portal_get_quota Get the current quota.
27 portal_get_tariff Get the current tariff.
28 settings_get_supported_cultures Get a list of the supported cultures, languages.
29 settings_get_time_zones Get a list of the available time zones.

License

ONLYOFFICE DocSpace MCP server is distributed under the Apache-2.0 license found in the LICENSE file.

About

DocSpace MCP Server

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  
0