🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

mcp-server-digitalocean

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mcp-server-digitalocean

A Model Context Protocol server for DigitalOcean cloud infrastructure

pipPyPI
Version
0.1.1
Weekly downloads
96
Maintainers
1

mcp-server-digitalocean

A Model Context Protocol server for DigitalOcean cloud infrastructure.

Features

Manage DigitalOcean resources from any MCP-compatible client:

  • Account: Get account info and limits
  • Droplets: List, get, create, and delete Droplets
  • Databases: List and get managed database clusters
  • Domains: List, create, and delete domains
  • Regions: List available datacenter regions
  • Sizes: List available Droplet sizes with pricing

Installation

uv tool install mcp-server-digitalocean

Using pip

pip install mcp-server-digitalocean

Configuration

Set your DigitalOcean API token:

export DIGITALOCEAN_TOKEN="dop_v1_xxxx"

Get a token at https://cloud.digitalocean.com/account/api/tokens

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "digitalocean": {
      "command": "uvx",
      "args": ["mcp-server-digitalocean"],
      "env": {
        "DIGITALOCEAN_TOKEN": "dop_v1_xxxx"
      }
    }
  }
}

With stdio transport (default)

mcp-server-digitalocean --transport stdio

Usage Examples

Once configured, you can ask your MCP client:

  • "List all my Droplets"
  • "Create a new 1GB Droplet in NYC1 running Ubuntu 24.04"
  • "Show me all available regions"
  • "List my database clusters"
  • "Delete droplet 42"

Development

# Install dependencies
uv sync

# Run tests
uv run pytest

# Run linter
uv run ruff check src/ tests/

# Type check
uv run pyright

License

MIT

Keywords

cloud

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts