
DigitalOcean MCP Server
Provides access to all 471+ DigitalOcean API endpoints through an MCP server that dynamically extracts them from the OpenAPI specification, enabling search, filtering, and direct API calls with proper authentication.
Tools
configure_digitalocean_api
Configure DigitalOcean API credentials
search_endpoints
Search for DigitalOcean API endpoints
get_endpoint_details
Get detailed information about a specific endpoint
list_endpoints
List all available DigitalOcean API endpoints
call_digitalocean_api
Call a DigitalOcean API endpoint
list_tags
List all available endpoint tags
README
DigitalOcean MCP Server
A Model Context Protocol (MCP) server that provides comprehensive access to all DigitalOcean API endpoints, dynamically extracted from their OpenAPI specification. This server enables AI assistants to interact with your DigitalOcean resources programmatically.
Features
- Complete API Coverage: Access to 471+ DigitalOcean API endpoints across all services
- Dynamic Endpoint Discovery: Automatically extracts and indexes endpoints from DigitalOcean's OpenAPI spec
- Intelligent Search: Find endpoints by operation ID, summary, description, or tags
- Detailed Documentation: Get parameter details, descriptions, and requirements for each endpoint
- Authenticated API Calls: Execute API calls through the MCP server with proper authentication
- Tag-based Organization: Browse endpoints by category (Droplets, Load Balancers, Databases, etc.)
- Auto-configuration: Automatically configures from
DIGITALOCEAN_API_TOKEN
environment variable
Quick Start
Installation
npm install
npm run build
Environment Setup
Create a .env
file or set the environment variable:
export DIGITALOCEAN_API_TOKEN="your-digitalocean-api-token"
Running the Server
npm start
Or for development with auto-reload:
npm run dev
MCP Tools
The server provides these MCP tools for AI assistants:
1. configure_digitalocean_api
Set up API credentials (optional if using environment variable)
2. list_endpoints
List all available endpoints with optional filtering by tag
3. search_endpoints
Search endpoints by query string
4. get_endpoint_details
Get detailed information about a specific endpoint
5. call_digitalocean_api
Execute API calls with authentication
6. list_tags
Show all available endpoint categories
Usage Examples
Basic Droplet Management
// List all droplets
{
"tool": "call_digitalocean_api",
"arguments": {
"operationId": "droplets_list"
}
}
// Create a new droplet
{
"tool": "call_digitalocean_api",
"arguments": {
"operationId": "droplets_create",
"parameters": {
"name": "example-droplet",
"region": "nyc3",
"size": "s-1vcpu-1gb",
"image": "ubuntu-20-04-x64"
}
}
}
Discovery and Search
// Find all droplet-related endpoints
{
"tool": "search_endpoints",
"arguments": {
"query": "droplet",
"limit": 10
}
}
// List endpoints by category
{
"tool": "list_endpoints",
"arguments": {
"tag": "Load Balancers",
"limit": 5
}
}
// Get detailed endpoint information
{
"tool": "get_endpoint_details",
"arguments": {
"operationId": "droplets_list"
}
}
Architecture
- extract_endpoints.py: Python script that parses the OpenAPI spec and extracts endpoint definitions
- src/endpoints.ts: TypeScript module for loading and searching endpoint data
- src/api-client.ts: HTTP client for making authenticated API calls
- src/index.ts: Main MCP server implementation
API Coverage
The server provides access to all DigitalOcean API endpoints across categories including:
- 1-Click Applications
- Account Management
- Billing
- Block Storage Volumes
- CDN Endpoints
- Certificates
- Container Registry
- Databases
- Domains and DNS
- Droplets
- Firewalls
- Floating IPs
- Images
- Kubernetes
- Load Balancers
- Monitoring
- Projects
- Reserved IPs
- Snapshots
- SSH Keys
- Tags
- VPCs
- And more...
Development
To regenerate the endpoint data:
python extract_endpoints.py
To rebuild the server:
npm run build
Claude Configuration
Claude Desktop
Add to your Claude Desktop MCP configuration (~/Library/Application Support/Claude/claude_desktop_config.json
on macOS):
{
"mcpServers": {
"digitalocean": {
"command": "node",
"args": ["/path/to/digitalocean-mcp/dist/index.js"],
"env": {
"DIGITALOCEAN_API_TOKEN": "your-digitalocean-api-token"
}
}
}
}
Claude Code (CLI)
For Claude Code users, the server auto-configures from environment variables:
export DIGITALOCEAN_API_TOKEN="your-digitalocean-api-token"
claude-code
Real-World Examples
Infrastructure Management
// Check droplet status across your infrastructure
{
"tool": "call_digitalocean_api",
"arguments": {
"operationId": "droplets_list"
}
}
// Scale a droplet
{
"tool": "call_digitalocean_api",
"arguments": {
"operationId": "dropletActions_post",
"parameters": {
"droplet_id": "123456789",
"type": "resize",
"size": "s-2vcpu-4gb"
}
}
}
Database Operations
// List database clusters
{
"tool": "call_digitalocean_api",
"arguments": {
"operationId": "databases_list_clusters"
}
}
// Create database backup
{
"tool": "call_digitalocean_api",
"arguments": {
"operationId": "databases_add_backup",
"parameters": {
"database_cluster_uuid": "your-cluster-uuid"
}
}
}
Load Balancer Management
// List load balancers
{
"tool": "call_digitalocean_api",
"arguments": {
"operationId": "load_balancers_list"
}
}
// Update load balancer configuration
{
"tool": "call_digitalocean_api",
"arguments": {
"operationId": "load_balancers_update",
"parameters": {
"lb_id": "your-lb-id",
"name": "updated-lb-name",
"algorithm": "round_robin"
}
}
}
Security
- API tokens are handled securely and never logged
- All requests use HTTPS
- Rate limiting is handled automatically
- Environment variables are preferred for token storage
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
License
MIT License - see LICENSE file for details
Support
- GitHub Issues: Report bugs or request features
- Documentation: See the examples above and endpoint details via the
get_endpoint_details
tool - DigitalOcean API Docs: Official API Documentation
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.