@digitalocean/mcp 1.0.4 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -16,6 +16,71 @@ Prerequisites:
16
16
  ```bash
17
17
  npx @digitalocean/mcp --services apps
18
18
  ```
19
+ ---
20
+
21
+ #### Using with Claude Code
22
+
23
+ To add the DigitalOcean MCP server to [Claude Code](https://www.anthropic.com/claude-code), run the following command in your terminal:
24
+
25
+ ```bash
26
+ claude mcp add digitalocean-mcp \
27
+ -e DIGITALOCEAN_API_TOKEN=YOUR_DO_API_TOKEN \
28
+ -- npx @digitalocean/mcp --services apps,databases
29
+ ```
30
+
31
+ This will:
32
+
33
+ * Add the MCP server under the **default (local)** scope — meaning it's only available inside the current folder.
34
+ * Register it with the name `digitalocean-mcp`.
35
+ * Enable the `apps` and `databases` services.
36
+ * Pass your DigitalOcean API token securely to the server.
37
+ * Store the configuration in your global Claude config at `~/.claude.json`, scoped to the current folder.
38
+
39
+ To confirm it's been added:
40
+
41
+ ```bash
42
+ claude mcp list
43
+ ```
44
+
45
+ To inspect details:
46
+
47
+ ```bash
48
+ claude mcp get digitalocean-mcp
49
+ ```
50
+
51
+ To remove it:
52
+
53
+ ```bash
54
+ claude mcp remove digitalocean-mcp
55
+ ```
56
+
57
+ ---
58
+
59
+ ### Want to use it everywhere?
60
+ **Local scope** is great when you're testing or only using the server in one project.
61
+ **User scope** is better if you want it available everywhere.
62
+
63
+ If you’d like to make the server available **globally** (so you don’t have to re-add it in each project), you can use the `user` scope:
64
+
65
+ ```bash
66
+ claude mcp add -s user digitalocean-mcp-user-scope \
67
+ -e DIGITALOCEAN_API_TOKEN=YOUR_DO_API_TOKEN \
68
+ -- npx @digitalocean/mcp --services apps,databases
69
+ ```
70
+
71
+ This will:
72
+
73
+ * Make the server available in **all folders**, not just the one you’re in
74
+ * Scope it to **your user account**
75
+ * Store it in your global Claude config at `~/.claude.json`
76
+
77
+ To remove it:
78
+
79
+ ```bash
80
+ claude mcp remove -s user digitalocean-mcp-user-scope
81
+ ```
82
+
83
+ ---
19
84
 
20
85
  #### Using Cursor IDE
21
86
 
@@ -74,8 +139,8 @@ The MCP DigitalOcean Integration supports the following services, allowing users
74
139
  |-----------------|--------------------------------------------------------------------------------------------------------------------|
75
140
  | **apps** | Manage DigitalOcean App Platform applications, including deployments and configurations. |
76
141
  | **droplets** | Create, manage, resize, snapshot, and monitor droplets (virtual machines) on DigitalOcean. |
77
- | **account** | Get information about your DigitalOcean account, billing, balance, invoices, and SSH keys. |
78
- | **networking** | Manage domains, DNS records, certificates, firewalls, reserved IPs, VPCs, CDNs, and Partner Network attachments. |
142
+ | **accounts** | Get information about your DigitalOcean account, billing, balance, invoices, and SSH keys. |
143
+ | **networking** | Manage domains, DNS records, certificates, firewalls, reserved IPs, VPCs, and CDNs. |
79
144
  | **insights** | Monitors your resources, endpoints and alert you when they're slow, unavailable, or SSL certificates are expiring. |
80
145
  | **spaces** | DigitalOcean Spaces object storage and Spaces access keys for S3-compatible storage. |
81
146
  | **databases** | Provision, manage, and monitor managed database clusters (Postgres, MySQL, Redis, etc.). |
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digitalocean/mcp",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "DigitalOcean MCP Implementation,",
5
5
  "author": "DigitalOcean",
6
6
  "homepage": "https://github.com/digitalocean-labs/mcp-digitalocean?tab=readme-ov-file#mcp-digitalocean-integration",