Skip to content

Commit 7ca32c7

Browse files
claudeits-mash
authored andcommitted
Add DigitalOcean MCP server definition
Official DigitalOcean MCP server for managing Droplets, App Platform, databases, Kubernetes, and Spaces. Uses @digitalocean/mcp npm package. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx
1 parent 0217546 commit 7ca32c7

1 file changed

Lines changed: 64 additions & 0 deletions

File tree

servers/com.digitalocean-mcp.json

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.digitalocean-mcp",
4+
"name": "DigitalOcean",
5+
"alias": "digitalocean",
6+
"description": "Manage DigitalOcean infrastructure including Droplets, App Platform, databases, Kubernetes clusters, networking, and Spaces object storage.",
7+
"icon": "https://avatars.githubusercontent.com/u/4650108?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["cloud", "developer-tools"],
10+
"tags": ["digitalocean", "cloud", "droplets", "kubernetes", "databases", "hosting", "infrastructure"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "@digitalocean/mcp"],
16+
"env": {
17+
"DIGITALOCEAN_API_TOKEN": "${input:DIGITALOCEAN_API_TOKEN}"
18+
},
19+
"metadata": {
20+
"inputs": [
21+
{
22+
"id": "DIGITALOCEAN_API_TOKEN",
23+
"label": "DigitalOcean API Token",
24+
"description": "Personal access token for the DigitalOcean API.",
25+
"type": "password",
26+
"required": true,
27+
"secret": true,
28+
"placeholder": "dop_v1_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
29+
"obtain": {
30+
"url": "https://cloud.digitalocean.com/account/api/tokens",
31+
"instructions": "1. Go to cloud.digitalocean.com > API\n2. Click 'Generate New Token'\n3. Name the token and select scopes\n4. Copy the generated token",
32+
"button_label": "Generate Token"
33+
}
34+
}
35+
]
36+
}
37+
},
38+
39+
"auth": {
40+
"type": "api_key",
41+
"instructions": "Generate a personal access token at https://cloud.digitalocean.com/account/api/tokens"
42+
},
43+
44+
"contributor": {
45+
"name": "DigitalOcean",
46+
"github": "digitalocean",
47+
"url": "https://www.digitalocean.com"
48+
},
49+
50+
"links": {
51+
"repository": "https://github.com/digitalocean-labs/mcp-digitalocean",
52+
"homepage": "https://www.digitalocean.com",
53+
"documentation": "https://docs.digitalocean.com/products/app-platform/how-to/use-mcp/"
54+
},
55+
56+
"platforms": ["all"],
57+
58+
"capabilities": {
59+
"tools": true,
60+
"resources": false,
61+
"prompts": false,
62+
"read_only_mode": false
63+
}
64+
}

0 commit comments

Comments
 (0)