Skip to content

Commit 623cec7

Browse files
authored
feat: add DigitalOcean MCP server definition (#36)
* 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 * fix: update server definition (input type 'password' -> 'text' for DIGITALOCEAN_API_TOKEN) * fix: update DigitalOcean documentation URL * fix: rename server files with transport suffix - com.digitalocean-mcp.json -> com.digitalocean-mcp-npx.json (id: com.digitalocean-mcp-npx) Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 233cc70 commit 623cec7

1 file changed

Lines changed: 74 additions & 0 deletions

File tree

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.digitalocean-mcp-npx",
4+
"name": "DigitalOcean (npx)",
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": [
10+
"cloud",
11+
"developer-tools"
12+
],
13+
"tags": [
14+
"digitalocean",
15+
"cloud",
16+
"droplets",
17+
"kubernetes",
18+
"databases",
19+
"hosting",
20+
"infrastructure"
21+
],
22+
"transport": {
23+
"type": "stdio",
24+
"command": "npx",
25+
"args": [
26+
"-y",
27+
"@digitalocean/mcp"
28+
],
29+
"env": {
30+
"DIGITALOCEAN_API_TOKEN": "${input:DIGITALOCEAN_API_TOKEN}"
31+
},
32+
"metadata": {
33+
"inputs": [
34+
{
35+
"id": "DIGITALOCEAN_API_TOKEN",
36+
"label": "DigitalOcean API Token",
37+
"description": "Personal access token for the DigitalOcean API.",
38+
"type": "text",
39+
"required": true,
40+
"secret": true,
41+
"placeholder": "dop_v1_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
42+
"obtain": {
43+
"url": "https://cloud.digitalocean.com/account/api/tokens",
44+
"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",
45+
"button_label": "Generate Token"
46+
}
47+
}
48+
]
49+
}
50+
},
51+
"auth": {
52+
"type": "api_key",
53+
"instructions": "Generate a personal access token at https://cloud.digitalocean.com/account/api/tokens"
54+
},
55+
"contributor": {
56+
"name": "DigitalOcean",
57+
"github": "digitalocean",
58+
"url": "https://www.digitalocean.com"
59+
},
60+
"links": {
61+
"repository": "https://github.com/digitalocean-labs/mcp-digitalocean",
62+
"homepage": "https://www.digitalocean.com",
63+
"documentation": "https://docs.digitalocean.com/reference/mcp/"
64+
},
65+
"platforms": [
66+
"all"
67+
],
68+
"capabilities": {
69+
"tools": true,
70+
"resources": false,
71+
"prompts": false,
72+
"read_only_mode": false
73+
}
74+
}

0 commit comments

Comments
 (0)