mcp-pcloud
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PCLOUD_API_HOST | No | API host for EU accounts (e.g., eapi.pcloud.com) | api.pcloud.com |
| PCLOUD_PASSWORD | No | Your pCloud password for username/password authentication | |
| PCLOUD_USERNAME | No | Your pCloud email address for username/password authentication | |
| PCLOUD_ACCESS_TOKEN | No | Access token from pCloud developer portal |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| pcloud_list_folderA | List contents of a folder in pCloud. Returns files and subfolders with their metadata. |
| pcloud_create_folderB | Create a new folder in pCloud. |
| pcloud_delete_folderA | Delete a folder from pCloud. Use recursive=true to delete non-empty folders. |
| pcloud_rename_folderA | Rename or move a folder in pCloud. |
| pcloud_copy_folderB | Copy a folder to another location in pCloud. |
| pcloud_get_file_infoC | Get metadata/information about a file in pCloud. |
| pcloud_delete_fileB | Delete a file from pCloud. |
| pcloud_rename_fileA | Rename or move a file in pCloud. |
| pcloud_copy_fileB | Copy a file to another location in pCloud. |
| pcloud_get_file_linkA | Get a temporary download link for a file in pCloud. |
| pcloud_create_public_linkC | Create a public sharing link for a file or folder. |
| pcloud_searchA | Search for files and folders in pCloud by name. |
| pcloud_read_text_fileB | Read the contents of a text file from pCloud. |
| pcloud_get_checksumA | Get SHA256, SHA1, and MD5 checksums for a file. |
| pcloud_get_user_infoA | Get information about the authenticated pCloud user, including quota usage. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 15 tools
Each tool targets a distinct resource and action: file vs folder vs user info, with clear separation between metadata, download links, and public links. No two tools appear to do the same thing.
Nearly all tools follow a consistent pcloud_<verb>_<object> pattern (e.g., get_file_info, rename_folder). The only minor deviation is 'pcloud_search' which omits an explicit object, but it remains readable and predictable.
15 tools cover the core file and folder management operations of a cloud storage service, including metadata, links, and user info. The count is within the ideal range and each tool has a clear purpose.
The tool set provides comprehensive management of existing files and folders (delete, rename, copy, list) but lacks the ability to create or upload files, which is a fundamental operation for a storage service. There is also no write/edit text file capability, leaving a significant gap in core workflows.