Doppler MCP Server
Enables secure secrets management through the Doppler CLI via natural language interactions. Supports managing secrets, projects, configs, and environments across different Doppler workspaces.
README
Doppler MCP Server
A Model Context Protocol (MCP) server that wraps the Doppler CLI for seamless secrets management integration with Claude and other MCP clients.
Overview
This MCP server provides a bridge between MCP-compatible applications (like Claude Desktop) and the Doppler CLI, allowing you to manage secrets, projects, configs, and environments through natural language interactions.
Prerequisites
- Node.js 18 or higher
- Doppler CLI installed and authenticated
- An active Doppler account with appropriate permissions
Installation
From Source
# Clone or navigate to the repository
cd doppler-mcp-server
# Install dependencies
npm install
# Build the project
npm run build
Configuration
Claude Desktop
Add this server to your Claude Desktop configuration file:
MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"doppler": {
"command": "node",
"args": ["/absolute/path/to/doppler-mcp-server/build/index.js"]
}
}
}
Other MCP Clients
For other MCP clients, configure them to run:
node /path/to/doppler-mcp-server/build/index.js
Available Tools
The server exposes the following Doppler CLI operations as MCP tools:
Secrets Management
-
doppler_secrets_get - Get a specific secret value
- Parameters:
name(required),project,config
- Parameters:
-
doppler_secrets_list - List all secrets in a config
- Parameters:
project,config
- Parameters:
-
doppler_secrets_set - Set a secret value
- Parameters:
name(required),value(required),project,config
- Parameters:
-
doppler_secrets_delete - Delete a secret
- Parameters:
name(required),project,config
- Parameters:
Project Management
-
doppler_projects_list - List all projects
- Parameters: none
-
doppler_projects_create - Create a new project
- Parameters:
name(required),description
- Parameters:
Config Management
-
doppler_configs_list - List all configs in a project
- Parameters:
project
- Parameters:
-
doppler_configs_create - Create a new config
- Parameters:
name(required),project(required),environment(required)
- Parameters:
Environment Management
- doppler_environments_list - List all environments in a project
- Parameters:
project
- Parameters:
Utility
-
doppler_run - Run a command with Doppler secrets injected
- Parameters:
command(required),project,config
- Parameters:
-
doppler_me - Get information about the authenticated user
- Parameters: none
Usage Examples
Once configured, you can interact with Doppler through your MCP client:
"List all my Doppler projects"
"Get the API_KEY secret from my production config"
"Set DATABASE_URL to postgres://... in the dev config"
"Create a new project called my-app"
"Show me all secrets in the staging config"
Authentication
This server uses the Doppler CLI's authentication. Make sure you've authenticated the Doppler CLI before using this server:
doppler login
You can verify your authentication status:
doppler me
Development
Build
npm run build
Watch Mode
npm run watch
How It Works
This server:
- Listens for MCP tool requests via stdio
- Translates tool calls into Doppler CLI commands
- Executes the commands using your local Doppler CLI installation
- Returns the results in JSON format back to the MCP client
Troubleshooting
"Command not found: doppler"
Make sure the Doppler CLI is installed and available in your PATH:
which doppler
doppler --version
"Authentication required"
Authenticate with Doppler:
doppler login
Server not appearing in Claude Desktop
- Check that the path in
claude_desktop_config.jsonis correct and absolute - Restart Claude Desktop completely
- Check the Claude Desktop logs for errors
Security Considerations
- This server executes Doppler CLI commands with the permissions of the authenticated user
- Secrets are transmitted through the MCP protocol - ensure your MCP client is trusted
- The server does not store any secrets, it only proxies requests to the Doppler CLI
License
MIT
Contributing
Contributions are welcome! Please feel free to submit issues or pull requests.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.