mcp-pcloud-crunchtools
Secure MCP server for pCloud cloud storage. Browse, search, read, and manage files and folders in a pCloud account through the Model Context Protocol.
Authentication is OAuth 2.0. Register an application, run mcp-pcloud-crunchtools login once, and the server manages the bearer token from there. pCloud accounts with two-factor authentication enabled cannot be accessed with a username and password, and password-derived tokens travel in the URL query string. This server never derives a credential from a password and never puts one in a URL — the client secret is only ever sent in a POST body.
Installation
# uvx (zero-install)
uvx mcp-pcloud-crunchtools
# PyPI
pip install mcp-pcloud-crunchtools
# Container
podman run quay.io/crunchtools/mcp-pcloud
Configuration
Register an application at pCloud my_apps, add http://localhost:8029/callback to its redirect URIs, then:
export PCLOUD_CLIENT_ID=your_client_id
export PCLOUD_CLIENT_SECRET=your_client_secret
mcp-pcloud-crunchtools login
login opens a browser, you approve the app, and the resulting bearer token is cached at ~/.config/mcp-pcloud/tokens.json (0600). That is the whole setup. pCloud access tokens do not expire — its oauth2_token endpoint returns no refresh_token and no expires_in — so there is no renewal cycle and nothing to rotate on a schedule. The token stays valid until you revoke the app from the pCloud console, which does not touch your account password or any other session.
The login flow also records which data center holds the account, so the region is never configured by hand.
Variables
| Variable | Required | Description |
|---|---|---|
PCLOUD_CLIENT_ID |
preferred | pCloud application client id |
PCLOUD_CLIENT_SECRET |
preferred | pCloud application client secret |
PCLOUD_ACCESS_TOKEN |
alternative | A bearer token supplied directly, for containers and CI |
PCLOUD_AUTH_TOKEN |
last resort | A pCloud desktop-client session token |
PCLOUD_TOKEN_STORE_PATH |
no | Where login caches the token (default ~/.config/mcp-pcloud/tokens.json) |
PCLOUD_API_HOST |
no | api.pcloud.com or eapi.pcloud.com; normally discovered during login |
Modes are selected in that order: a client id and secret together select OAuth application mode and outrank everything else; otherwise a static access token is used; a session token is the last resort.
Every credential variable also accepts a _FILE form (PCLOUD_CLIENT_SECRET_FILE, PCLOUD_ACCESS_TOKEN_FILE, …) pointing at a file that holds the value. The _FILE form takes precedence and is preferred for container deployments — it works with podman secrets, Kubernetes secret volumes, and systemd LoadCredential=. The server warns (but does not fail) if the file is group- or world-readable.
Headless hosts
login needs a browser to reach pCloud and a local port to receive the redirect. On a server, forward the callback port and run it over SSH:
ssh -L 8029:localhost:8029 yourhost
mcp-pcloud-crunchtools login --no-browser # prints the URL; open it locally
Alternatively, run login on a workstation and copy the resulting tokens.json to the host.
Which credential do I have?
If you only have the token the pCloud desktop client stores, that is a session token, not an OAuth token: pCloud rejects it as an access_token with result 2094, so set it as PCLOUD_AUTH_TOKEN. Prefer an application: a session token is the account, carries no scope, and cannot be revoked independently of the client that issued it.
Claude Code
claude mcp add mcp-pcloud-crunchtools \
--env PCLOUD_CLIENT_ID=your_client_id \
--env PCLOUD_CLIENT_SECRET=your_client_secret \
-- uvx mcp-pcloud-crunchtools
Transports
mcp-pcloud-crunchtools login # authorize once
mcp-pcloud-crunchtools # stdio (default)
mcp-pcloud-crunchtools serve --transport sse --port 8028
mcp-pcloud-crunchtools serve --transport streamable-http --port 8028
Tools
Folders — pcloud_list_folder, pcloud_create_folder, pcloud_delete_folder, pcloud_rename_folder, pcloud_copy_folder
Files — pcloud_get_file_info, pcloud_delete_file, pcloud_rename_file, pcloud_copy_file, pcloud_read_text_file, pcloud_get_checksum
Links — pcloud_get_file_link, pcloud_create_public_link
Search & account — pcloud_search, pcloud_get_user_info
pcloud_create_public_link publishes a file to anyone holding the returned URL, and pcloud_get_file_link returns a time-limited direct download URL. Treat both as credential-issuing operations when building tool allowlists.
Security
- Tokens and the client secret held as Pydantic
SecretStr, never logged and scrubbed from error messages, including a token loaded from the store rather than the environment stateparameter checked with a constant-time comparison on the OAuth callback; the redirect'shostnameis validated against the known pCloud regions before it is used- Token store written 0600 via
os.open, never through a world-readable temporary file - Token sent in an
Authorizationheader, never in a URL - All arguments validated by Pydantic models with
extra="forbid"; paths must be absolute and may not contain..traversal segments - TLS certificate validation always on, 30s request timeout, 10 MB response ceiling
- No filesystem access, shell execution, or code evaluation
Development
uv sync
uv run ruff check src tests
uv run mypy src
uv run pytest -v
gourmand --full .
podman build -f Containerfile .
License
AGPL-3.0-or-later
Release files for mcp-pcloud-crunchtools 2.5.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| mcp_pcloud_crunchtools-2.5.0.tar.gz | 170.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| mcp_pcloud_crunchtools-2.5.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 212.6 kB
Release files / mcp_pcloud_crunchtools-2.5.0.tar.gz
| Download URL | mcp_pcloud_crunchtools-2.5.0.tar.gz |
|---|---|
| Size | 170.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e0864e11858f7336002f3d28e379b2a2197428898ae69147903861c8bf761164
|
|
BLAKE2b-256 checksum How to use checksums |
5735b28f490c9d42ffd556657eac9ca988ece0d13199aa78307ab841d74d52f0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.
Transparency logRelease files / mcp_pcloud_crunchtools-2.5.0-py3-none-any.whl
| Download URL | mcp_pcloud_crunchtools-2.5.0-py3-none-any.whl |
|---|---|
| Size | 41.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
9af59e701ff211bf4bcd3429079c96b33c84537f293af37d5dcf079d4f43b2a1
|
|
BLAKE2b-256 checksum How to use checksums |
c81bd9ed4f379260fe12dc160c246122daacd75e94193617e06102c8cda8e3ed
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.
Transparency log