Doppler MCP Server — Hosted Api Connectors Integration
MCP Server language Hosted language PublicManage Doppler secrets, configs, projects, and service tokens — your AI agent's secure gateway to all environment variables.
Use with AI AssistantsMCP
Connect Claude, Cursor, or any MCP-compatible client — then call tools directly
① Add This MCP Server
Paste into your AI client config — then all its tools are available instantly.
{
"mcpServers": {
"doppler": {
"url": "https://mcp.aerostack.dev/s/aerostack/mcp-doppler",
"headers": {
"Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
}
}
}
}Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.
② Call a Tool
Ask your AI assistant to call a specific tool, or send raw JSON-RPC:
Natural Language Prompt
“Use the get_workplace tool to get doppler workplace details including name, billing email, and security policies”
Using a Workspace?
Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.
description Overview
mcp-doppler — Doppler MCP Server
Manage secrets, configs, and service tokens across all your Doppler environments from any AI agent.
Doppler is the industry-standard secrets manager used by thousands of engineering teams to manage environment variables across development, staging, and production. This MCP server gives your AI agents full access to the Doppler API: listing and updating secrets, managing projects and configs, creating service tokens, and auditing activity — without ever hard-coding credentials.
Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-doppler
What You Can Do
- Read and write secrets across any Doppler project and config from your AI agent
- Create, clone, and delete configs to manage environment branches programmatically
- Generate and revoke service tokens to give other services scoped access to secrets
- Download a full secrets bundle as JSON for bulk inspection or migration
- Audit recent activity across your configs to track who changed what and when
Available Tools
| Tool | Description |
|---|---|
_ping |
Verify credentials with a lightweight auth check — returns the workplace name |
get_workplace |
Get Doppler workplace details including name, billing email, and security policies |
list_projects |
List all projects in the Doppler workplace |
get_project |
Get details of a specific Doppler project |
create_project |
Create a new Doppler project |
delete_project |
Delete a project and all its configs/secrets (irreversible) |
list_environments |
List all environments for a project |
get_environment |
Get details of a specific environment by slug |
list_configs |
List all configs in a project |
get_config |
Get details of a specific config |
clone_config |
Clone an existing config into a new config with a different name |
list_secrets |
List all secret names and values in a config |
get_secret |
Get a single secret by name, including its raw and computed value |
set_secret |
Set one or more secrets in a config (key-value object) |
delete_secret |
Delete a single secret by name from a config |
download_secrets |
Download all secrets from a config as a JSON object |
list_service_tokens |
List all service tokens for a config |
create_service_token |
Create a new service token with read or read/write access |
revoke_service_token |
Revoke a service token by its slug |
get_activity_logs |
Get the last 20 activity log entries for a project and config |
Configuration
| Variable | Required | Description | How to Get |
|---|---|---|---|
DOPPLER_SERVICE_TOKEN |
Yes | Doppler Service Token | doppler.com → Your Project → Config → Access tab → Service Tokens → Generate. Use a config-scoped token with at least read access for read-only tools, or read/write to also set and delete secrets. |
Use a read/write token if you want agents to set or delete secrets. A read-only token is sufficient if you only need to inspect and download existing values.
Service tokens are scoped to a single config. If you need cross-project access, generate a token from each config and configure them as separate MCP instances, or use a Doppler personal token (with
dp.pt.prefix) which has workplace-wide access.
Quick Start
Add to Aerostack Workspace
- Go to aerostack.dev → Your Project → MCPs
- Search for "Doppler" and click Add to Workspace
- Add your
DOPPLER_SERVICE_TOKENunder Project → Secrets
Once added, every AI agent in your workspace can read and manage your Doppler secrets automatically.
Example Prompts
"List all secrets in the production config of my backend project"
"Set DATABASE_URL to postgres://... in the staging config of my-api"
"Clone the dev config into a new config called dev-feature-x"
"Create a read-only service token named 'deploy-bot' for the prd config"
"Show me recent activity in the production config to see who changed secrets today"
Direct API Call
# List secrets in a config
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-doppler \
-H 'Content-Type: application/json' \
-H 'X-Mcp-Secret-DOPPLER-SERVICE-TOKEN: dp.st.prd.xxxx' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_secrets","arguments":{"project":"my-backend","config":"prd"}}}'
# Set a secret
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-doppler \
-H 'Content-Type: application/json' \
-H 'X-Mcp-Secret-DOPPLER-SERVICE-TOKEN: dp.st.prd.xxxx' \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"set_secret","arguments":{"project":"my-backend","config":"prd","secrets":{"STRIPE_SECRET_KEY":"sk_live_..."}}}}'
Technical Notes
- Token scoping. Service tokens (
dp.st.*) are config-scoped — they can only read/write secrets within the one config they were created for. To manage projects, environments, or workplace settings, you need a personal token (dp.pt.*) or a CLI token. Most agent use cases (reading/writing secrets in a known config) work fine with a service token. - Service token permissions.
readtokens can only call read-only tools (list_secrets,get_secret,download_secrets,list_service_tokens, etc.).read/writetokens additionally allowset_secret,delete_secret,clone_config,create_service_token, andrevoke_service_token. - Environments vs configs. In Doppler, an environment (e.g.
production) is a grouping. A config (e.g.prd,prd_server) is the actual entity that holds secrets. Most tools operate on configs, not environments directly. - download_secrets returns the secrets as a flat JSON object — the same format Doppler injects into your app at runtime. It is the fastest way to export or diff secrets between configs.
- Activity logs are per-config and return up to 20 of the most recent events including secret reads, writes, and token usage.
License
MIT
terminal Tools (19)
Available tools on this MCP server. Each tool can be called directly from any AI agent.
get_workplace #1 Get Doppler workplace details including name, billing email, and security policies.
list_projects #2 List all projects in the Doppler workplace.
get_project #3 Get details of a specific Doppler project.
create_project #4 Create a new Doppler project.
delete_project #5 Delete a Doppler project. This is irreversible and removes all configs and secrets inside.
list_environments #6 List all environments for a Doppler project.
get_environment #7 Get details of a specific environment within a Doppler project.
list_configs #8 List all configs (branches/environments) in a Doppler project.
get_config #9 Get details of a specific config in a Doppler project.
clone_config #10 Clone an existing Doppler config into a new config with a different name.
list_secrets #11 List all secret names and their values in a Doppler config.
get_secret #12 Get a single secret by name from a Doppler config, including its raw and computed value.
set_secret #13 Set one or more secrets in a Doppler config. Pass secrets as a key-value object.
delete_secret #14 Delete a single secret by name from a Doppler config.
download_secrets #15 Download all secrets from a Doppler config as a JSON object — useful for bulk export or comparison.
list_service_tokens #16 List all service tokens for a Doppler config.
create_service_token #17 Create a new service token for a Doppler config with read or read/write access.
revoke_service_token #18 Revoke (delete) a service token from a Doppler config by its slug.
get_activity_logs #19 Get recent activity logs for a Doppler project and config (last 20 events).
Details
language Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-doppler
Sub-50ms globally · Zero cold start
Publisher
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
More in API Connectors
Browse API Connectors MCPs →Aerostack Registry
by @aerostack
Discover and invoke any MCP, Function, or Skill published to the Aerostack marketplace — the universal AI capability hub.
Algolia
by @aerostack
Search indexes, manage records, browse data, and configure ranking in Algolia — AI-native instant search access.
Arangodb
by @aerostack
Query documents, run AQL, traverse graphs, and manage collections in your ArangoDB database — AI-native multi-model database access.
Ayrshare
by @aerostack
Post, schedule, and analyze social media across 13 platforms — Facebook, Instagram, X, LinkedIn, TikTok, Bluesky, Threads, Reddit, Pinterest, YouTube, Telegram, Snapchat, Google Business.
Basecamp
by @aerostack
Manage projects, to-dos, messages, schedules, and campfire chats in Basecamp — AI-native project management.
Bigquery
by @aerostack
Run SQL queries, list datasets and tables, inspect schemas, and export results from Google BigQuery — AI-native data warehouse access.
Frequently asked questions
What is the Doppler MCP server and what can it do? +
The Doppler MCP server is hosted on Aerostack and exposes these tools to your AI agent: `get_workplace`, `list_projects`, `get_project`, `create_project`, `delete_project`. You get one hosted URL — no self-hosting — that works from Claude, Cursor, ChatGPT, Gemini, VS Code, or any MCP-compatible client, and you can share it with your team or combine it with other MCP servers in a workspace.
Is the Doppler MCP server hosted, or do I have to run it myself? +
It's hosted on Aerostack's edge infrastructure — you don't deploy or maintain anything. Add it to a workspace and you get one authenticated URL, with secrets encrypted, that any AI agent or editor can connect to. Use it solo or share the same URL across your whole team.
Which AI agents and editors can use the Doppler MCP server? +
Any MCP client: Claude and Claude Code, Cursor, ChatGPT, Gemini, Windsurf, Cline, VS Code, and custom agents. Because it's one hosted URL, the same Doppler MCP server works everywhere — and you can compose it with other MCP servers, skills, and functions behind a single workspace URL.
How do I install the Doppler MCP server in Claude Desktop? +
Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-doppler": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-doppler"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.
How do I use the Doppler MCP server in Cursor? +
In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-doppler", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-doppler"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.
Does Doppler MCP require authentication? +
Yes. Doppler requires authentication. Check the MCP's documentation for the required credentials.