MCP client for the DoControl MCP Server
Project description
dc-mcp
Stdio MCP (Model Context Protocol) client for the DoControl multi-agent assistant. Connect Cursor (or any MCP-compatible client) to your DoControl tenant in under 60 seconds.
Quick start
1. Install uv (one-time, if not already installed)
curl -LsSf https://astral.sh/uv/install.sh | sh
2. Authenticate with your DoControl refresh token
uvx dc-mcp login
3. Add to ~/.cursor/mcp.json
{
"mcpServers": {
"docontrol": {
"command": "uvx",
"args": ["dc-mcp"],
},
},
}
Then restart Cursor. The DoControl tools will appear in the chat sidebar.
Get your refresh token
Log in to https://app.docontrol.io, navigate to Settings → Integrations → MCP Token, and click Generate. The token is valid for 30 days; you can regenerate it at any time.
When your token expires, simply run uvx dc-mcp login again with the new refresh token.
CLI reference
| Command | What it does |
|---|---|
dc-mcp |
Run the stdio MCP server (this is what Cursor invokes) |
dc-mcp login |
Store a refresh token in your OS keychain |
dc-mcp logout |
Clear the stored refresh token |
dc-mcp whoami |
Show your current authentication info |
dc-mcp --version |
Print the installed version |
dc-mcp --help |
Show CLI help |
CI / headless / corporate environments
For environments where the OS keychain is unavailable (CI runners, headless Linux containers, devcontainers without Secret Service), set the refresh token via environment variable:
export DOCONTROL_REFRESH_TOKEN="..."
Then configure your MCP server to pass it through:
{
"mcpServers": {
"docontrol": {
"command": "uvx",
"args": ["dc-mcp"],
"env": {
"DOCONTROL_REFRESH_TOKEN": "${env:DOCONTROL_REFRESH_TOKEN}",
},
},
},
}
The environment variable takes priority over the keychain when both are set.
Troubleshooting
error: Refresh token expired or revoked
Your refresh token is older than 30 days or has been revoked. Generate a new one in the DoControl webapp and run dc-mcp login again.
Network error contacting Cognito ... Check your internet connection or corporate proxy
You're behind a corporate firewall. Set HTTPS_PROXY to your proxy URL (e.g., export HTTPS_PROXY=http://proxy.company.com:8080).
Keychain unavailable: ... On headless Linux, set DOCONTROL_REFRESH_TOKEN env var instead
Your environment doesn't have a usable OS keychain (common in headless Linux or devcontainers). Use the environment variable approach from the CI section above.
No refresh token found
Either run dc-mcp login to store a token in your keychain, or set the DOCONTROL_REFRESH_TOKEN environment variable.
No DoControl tools appear in Cursor
Verify the syntax of ~/.cursor/mcp.json, restart Cursor, then check Cursor Settings → MCP for connection errors. Run dc-mcp whoami to confirm your authentication is healthy.
uvx: command not found
Install uv with curl -LsSf https://astral.sh/uv/install.sh | sh and restart your shell.
Privacy and security
Refresh tokens are stored in your OS keychain (macOS Keychain, Windows Credential Vault, or Linux Secret Service). They never leave your machine other than to be exchanged with Cognito for short-lived access tokens.
Each request to DoControl uses a fresh access token with a one-hour time-to-live (TTL). All traffic is HTTPS to AWS-hosted endpoints. No telemetry is collected by the package.
To revoke access, run dc-mcp logout to clear the local token, and revoke server-side via the DoControl webapp's Integrations panel.
Development & contributing
This package is part of the docontrol-io/dot repository. To report issues, file a GitHub issue in the main repo. For implementation details and testing, see the package source in packages/docontrol-mcp/src/ and tests in packages/docontrol-mcp/tests/.
License
MIT — see LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dc_mcp-0.1.5.tar.gz.
File metadata
- Download URL: dc_mcp-0.1.5.tar.gz
- Upload date:
- Size: 46.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff9bcaad0a71bb97f2d675ab1e51e6567e3cb02dbd1bfe33325c95ac61d7575a
|
|
| MD5 |
3a3a16fe5931945bf38050f5ced29d3b
|
|
| BLAKE2b-256 |
1083c42235fecb71c05c8982085cc74269aa1089d7b47958ea50095d28a92e31
|
File details
Details for the file dc_mcp-0.1.5-py3-none-any.whl.
File metadata
- Download URL: dc_mcp-0.1.5-py3-none-any.whl
- Upload date:
- Size: 28.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d7751d4bbf1e056e60e5154a93384da0b00e6cbb3483a51c4d606225800f0f2
|
|
| MD5 |
e990f1d0f600897d207f7708b55dc50f
|
|
| BLAKE2b-256 |
f137e8291251ae6ccc6b283b5071a516cae1cb892b688ccfb0051d208dc02a6c
|