@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 +28 -29
- package/dist/mcp-digitalocean-darwin-amd64 +0 -0
- package/dist/mcp-digitalocean-darwin-arm64 +0 -0
- package/dist/mcp-digitalocean-linux-386 +0 -0
- package/dist/mcp-digitalocean-linux-amd64 +0 -0
- package/dist/mcp-digitalocean-linux-arm +0 -0
- package/dist/mcp-digitalocean-linux-arm64 +0 -0
- package/dist/mcp-digitalocean-windows-386.exe +0 -0
- package/dist/mcp-digitalocean-windows-amd64.exe +0 -0
- package/dist/mcp-digitalocean-windows-arm.exe +0 -0
- package/dist/mcp-digitalocean-windows-arm64.exe +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ Prerequisites:
|
|
|
14
14
|
#### Local Installation
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
|
-
npx @digitalocean/mcp --services apps
|
|
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
|
-
| **
|
|
67
|
-
| **
|
|
68
|
-
| **
|
|
69
|
-
| **
|
|
70
|
-
| **
|
|
71
|
-
| **
|
|
72
|
-
| **
|
|
73
|
-
| **
|
|
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
|
-
- [
|
|
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: `
|
|
95
|
-
- Resize a droplet: `
|
|
96
|
-
- Add a new SSH key: `
|
|
97
|
-
- Create a new domain: `
|
|
98
|
-
- Enable backups on a droplet: `
|
|
99
|
-
- Flush a CDN cache: `
|
|
100
|
-
- Create a VPC peering connection: `
|
|
101
|
-
- Delete a VPC peering connection: `
|
|
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
|
|
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
|
+
"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",
|