Skip to content

Commit 66fe1a4

Browse files
committed
Add Doppler MCP server
Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ
1 parent 2fd91f8 commit 66fe1a4

1 file changed

Lines changed: 73 additions & 0 deletions

File tree

servers/com.doppler-mcp-npx.json

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.doppler-mcp-npx",
4+
"name": "Doppler (npx)",
5+
"alias": "doppler",
6+
"description": "Manage Doppler secrets, projects, configs, and environments through the Doppler API. Tools are auto-generated from the Doppler OpenAPI spec and support read-only and project/config scoping.",
7+
"logo": "https://avatars.githubusercontent.com/u/34022344?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"security"
11+
],
12+
"tags": [
13+
"doppler",
14+
"secrets",
15+
"secrets-management",
16+
"configuration",
17+
"environment-variables",
18+
"security"
19+
],
20+
"transport": {
21+
"type": "stdio",
22+
"command": "npx",
23+
"args": [
24+
"-y",
25+
"@dopplerhq/mcp-server"
26+
],
27+
"env": {
28+
"DOPPLER_TOKEN": "${input:DOPPLER_TOKEN}"
29+
},
30+
"metadata": {
31+
"inputs": [
32+
{
33+
"id": "DOPPLER_TOKEN",
34+
"label": "Doppler Token",
35+
"description": "A Doppler service token or personal token used to authenticate with the Doppler API. Scope the token to only the projects, configs, and actions you intend to allow. Service tokens (dp.st.*) work out of the box and auto-detect scope.",
36+
"type": "text",
37+
"required": true,
38+
"secret": true,
39+
"placeholder": "dp.st.****************",
40+
"obtain": {
41+
"url": "https://docs.doppler.com/docs/service-tokens",
42+
"instructions": "1. Open the Doppler dashboard and select your project and config\n2. Go to the 'Access' tab\n3. Under 'Service Tokens', click 'Generate'\n4. Choose Read or Read/Write access and the config to scope it to\n5. Copy the generated token (starts with dp.st.)\n\nAlternatively, create a personal token under Settings > Tokens (Account) for broader access.",
43+
"button_label": "Create Service Token"
44+
}
45+
}
46+
]
47+
}
48+
},
49+
"auth": {
50+
"type": "api_key",
51+
"instructions": "Create a scoped service token at Doppler (project > Access > Service Tokens) or a personal token under Account settings, then provide it as DOPPLER_TOKEN. Use a read-only token where possible."
52+
},
53+
"contributor": {
54+
"name": "Doppler",
55+
"github": "DopplerHQ",
56+
"url": "https://www.doppler.com"
57+
},
58+
"links": {
59+
"repository": "https://github.com/DopplerHQ/mcp-server",
60+
"homepage": "https://www.doppler.com",
61+
"documentation": "https://docs.doppler.com/reference/api"
62+
},
63+
"platforms": [
64+
"all"
65+
],
66+
"capabilities": {
67+
"tools": true,
68+
"resources": false,
69+
"prompts": false,
70+
"read_only_mode": true
71+
},
72+
"changelog_url": "https://github.com/DopplerHQ/mcp-server/releases"
73+
}

0 commit comments

Comments
 (0)