@digitalocean/mcp 1.0.2 → 1.0.4

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
@@ -14,7 +14,7 @@ Prerequisites:
14
14
  #### Local Installation
15
15
 
16
16
  ```bash
17
- npx @digitalocean/mcp --services apps,droplets --log-level debug
17
+ npx @digitalocean/mcp --services apps
18
18
  ```
19
19
 
20
20
  #### Using Cursor IDE
@@ -57,20 +57,30 @@ npx @digitalocean/mcp --services apps,droplets --log-level debug
57
57
  }
58
58
  ```
59
59
 
60
+ ## Configuring Tools
61
+
62
+ To configure tools, you use the `--services` flag to specify which service you want to enable. It is highly recommended to only
63
+ enable the services you need to reduce context size and improve accuracy. See list of supported services below.
64
+
65
+ ```bash
66
+ npx @digitalocean/mcp --services apps,droplets
67
+ ```
68
+
60
69
  ## Supported Services
61
70
 
62
71
  The MCP DigitalOcean Integration supports the following services, allowing users to manage their DigitalOcean infrastructure effectively
63
72
 
64
73
  | **Service** | **Description** |
65
74
  |-----------------|--------------------------------------------------------------------------------------------------------------------|
66
- | **Apps** | Manage DigitalOcean App Platform applications, including deployments and configurations. |
67
- | **Droplets** | Create, manage, resize, snapshot, and monitor droplets (virtual machines) on DigitalOcean. |
68
- | **Account** | Get information about your DigitalOcean account, billing, balance, invoices, and SSH keys. |
69
- | **Networking** | Manage domains, DNS records, certificates, firewalls, reserved IPs, VPCs, CDNs, and Partner Network attachments. |
70
- | **Insights** | Monitors your resources, endpoints and alert you when they're slow, unavailable, or SSL certificates are expiring. |
71
- | **Spaces** | DigitalOcean Spaces object storage and Spaces access keys for S3-compatible storage. |
72
- | **Marketplace** | Discover and manage DigitalOcean Marketplace applications. |
73
- | **DOKS** | Manage DigitalOcean Kubernetes clusters and node pools. |
75
+ | **apps** | Manage DigitalOcean App Platform applications, including deployments and configurations. |
76
+ | **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. |
79
+ | **insights** | Monitors your resources, endpoints and alert you when they're slow, unavailable, or SSL certificates are expiring. |
80
+ | **spaces** | DigitalOcean Spaces object storage and Spaces access keys for S3-compatible storage. |
81
+ | **databases** | Provision, manage, and monitor managed database clusters (Postgres, MySQL, Redis, etc.). |
82
+ | **marketplace** | Discover and manage DigitalOcean Marketplace applications. |
83
+ | **doks** | Manage DigitalOcean Kubernetes clusters and node pools. | |
74
84
  ---
75
85
  ### Service Documentation
76
86
 
@@ -81,7 +91,7 @@ See the following files for full documentation:
81
91
  - [Droplet Service](./internal/droplet/README.md)
82
92
  - [Account Service](./internal/account/README.md)
83
93
  - [Networking Service](./internal/networking/README.md)
84
- - [DBaaS Service](./internal/dbaas/README.md)
94
+ - [Databases Service](./internal/dbaas/README.md)
85
95
  - [Insights Service](./internal/insights/README.md)
86
96
  - [Spaces Service](./internal/spaces/README.md)
87
97
  - [Marketplace Service](./internal/marketplace/README.md)
@@ -91,28 +101,17 @@ See the following files for full documentation:
91
101
 
92
102
  ### Example Tool Usage
93
103
 
94
- - Deploy an app from a GitHub repo: `digitalocean-create-app-from-spec`
95
- - Resize a droplet: `digitalocean-droplet-resize`
96
- - Add a new SSH key: `digitalocean-key-create`
97
- - Create a new domain: `digitalocean-domain-create`
98
- - Enable backups on a droplet: `digitalocean-droplet-enable-backups`
99
- - Flush a CDN cache: `digitalocean-cdn-flush-cache`
100
- - Create a VPC peering connection: `digitalocean-vpc-peering-create`
101
- - Delete a VPC peering connection: `digitalocean-vpc-peering-delete`
104
+ - Deploy an app from a GitHub repo: `create-app-from-spec`
105
+ - Resize a droplet: `droplet-resize`
106
+ - Add a new SSH key: `key-create`
107
+ - Create a new domain: `domain-create`
108
+ - Enable backups on a droplet: `droplet-enable-backups`
109
+ - Flush a CDN cache: `cdn-flush-cache`
110
+ - Create a VPC peering connection: `vpc-peering-create`
111
+ - Delete a VPC peering connection: `vpc-peering-delete`
102
112
 
103
113
  ---
104
114
 
105
-
106
- ## Configuring Tools
107
-
108
- To configure tools, you use the `--services` flag to specify which service you want to enable. It is highly recommended to only
109
- enable the services you need to reduce context size and improve accuracy.
110
-
111
- ```bash
112
- npx @digitalocean/mcp --services apps,droplets
113
- ```
114
-
115
- ---
116
115
  ## Contributing
117
116
 
118
117
  Contributions are welcome! If you encounter any issues or have ideas for improvements, feel free to open an issue or submit a pull request.
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.2",
3
+ "version": "1.0.4",
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",