@digitalocean/mcp 1.0.3 → 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,21 +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
- | **Databases** | Provision, manage, and monitor managed database clusters (Postgres, MySQL, Redis, etc.). |
73
- | **Marketplace** | Discover and manage DigitalOcean Marketplace applications. |
74
- | **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. | |
75
84
  ---
76
85
  ### Service Documentation
77
86
 
@@ -92,28 +101,17 @@ See the following files for full documentation:
92
101
 
93
102
  ### Example Tool Usage
94
103
 
95
- - Deploy an app from a GitHub repo: `digitalocean-create-app-from-spec`
96
- - Resize a droplet: `digitalocean-droplet-resize`
97
- - Add a new SSH key: `digitalocean-key-create`
98
- - Create a new domain: `digitalocean-domain-create`
99
- - Enable backups on a droplet: `digitalocean-droplet-enable-backups`
100
- - Flush a CDN cache: `digitalocean-cdn-flush-cache`
101
- - Create a VPC peering connection: `digitalocean-vpc-peering-create`
102
- - 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`
103
112
 
104
113
  ---
105
114
 
106
-
107
- ## Configuring Tools
108
-
109
- To configure tools, you use the `--services` flag to specify which service you want to enable. It is highly recommended to only
110
- enable the services you need to reduce context size and improve accuracy.
111
-
112
- ```bash
113
- npx @digitalocean/mcp --services apps,droplets
114
- ```
115
-
116
- ---
117
115
  ## Contributing
118
116
 
119
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.3",
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",