-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathcom.digitalocean-mcp-npx.json
More file actions
74 lines (74 loc) · 2.09 KB
/
Copy pathcom.digitalocean-mcp-npx.json
File metadata and controls
74 lines (74 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"$schema": "../schemas/server-definition.schema.json",
"id": "com.digitalocean-mcp-npx",
"name": "DigitalOcean (npx)",
"alias": "digitalocean",
"description": "Manage DigitalOcean infrastructure including Droplets, App Platform, databases, Kubernetes clusters, networking, and Spaces object storage.",
"icon": "https://avatars.githubusercontent.com/u/4650108?v=4",
"schema_version": "2.1",
"categories": [
"cloud",
"developer-tools"
],
"tags": [
"digitalocean",
"cloud",
"droplets",
"kubernetes",
"databases",
"hosting",
"infrastructure"
],
"transport": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@digitalocean/mcp"
],
"env": {
"DIGITALOCEAN_API_TOKEN": "${input:DIGITALOCEAN_API_TOKEN}"
},
"metadata": {
"inputs": [
{
"id": "DIGITALOCEAN_API_TOKEN",
"label": "DigitalOcean API Token",
"description": "Personal access token for the DigitalOcean API.",
"type": "text",
"required": true,
"secret": true,
"placeholder": "dop_v1_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"obtain": {
"url": "https://cloud.digitalocean.com/account/api/tokens",
"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",
"button_label": "Generate Token"
}
}
]
}
},
"auth": {
"type": "api_key",
"instructions": "Generate a personal access token at https://cloud.digitalocean.com/account/api/tokens"
},
"contributor": {
"name": "DigitalOcean",
"github": "digitalocean",
"url": "https://www.digitalocean.com"
},
"links": {
"repository": "https://github.com/digitalocean-labs/mcp-digitalocean",
"homepage": "https://www.digitalocean.com",
"documentation": "https://docs.digitalocean.com/reference/mcp/"
},
"platforms": [
"all"
],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": false
}
}