Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated
  • Submit MCP

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 TrackMCP. All rights reserved.

Built with ❤️ by Krishna Goyal

    Mcp Digitalocean

    MCP DigitalOcean Integration

    57 stars
    Go
    Updated Oct 19, 2025

    Table of Contents

    • Installation
    • Remote MCP (Recommended)
    • Available Services
    • Claude Code
    • Remote MCP (Recommended)
    • Local Installation
    • Verify Installation
    • Inspect Details
    • Remove Server
    • Claude Desktop
    • Remote MCP (Recommended)
    • Local Installation
    • Cursor
    • Remote MCP (Recommended)
    • Local Installation
    • VS Code
    • Remote MCP (Recommended)
    • Local Installation
    • Prerequisites for Local Installation
    • Quick Test
    • Configuration
    • Local Installation Configuration
    • Documentation
    • Example Tools
    • Contributing
    • License

    Table of Contents

    • Installation
    • Remote MCP (Recommended)
    • Available Services
    • Claude Code
    • Remote MCP (Recommended)
    • Local Installation
    • Verify Installation
    • Inspect Details
    • Remove Server
    • Claude Desktop
    • Remote MCP (Recommended)
    • Local Installation
    • Cursor
    • Remote MCP (Recommended)
    • Local Installation
    • VS Code
    • Remote MCP (Recommended)
    • Local Installation
    • Prerequisites for Local Installation
    • Quick Test
    • Configuration
    • Local Installation Configuration
    • Documentation
    • Example Tools
    • Contributing
    • License

    Documentation

    MCP DigitalOcean Integration

    MCP DigitalOcean Integration is an open-source project that provides a comprehensive interface for managing DigitalOcean resources and performing actions using the DigitalOcean API. Built on top of the godo library and the MCP framework, this project exposes a wide range of tools to simplify cloud infrastructure management.

    DISCLAIMER: "Use of MCP technology to interact with your DigitalOcean account can come with risks"

    Installation

    Remote MCP (Recommended)

    The easiest way to get started is to use DigitalOcean's hosted MCP services. Each service is deployed as a standalone MCP server accessible via HTTPS, allowing you to connect without running any local server. You can connect to multiple endpoints simultaneously by adding multiple entries to your configuration.

    Available Services

    ServiceRemote MCP URLDescription
    appshttps://apps.mcp.digitalocean.com/mcpManage DigitalOcean App Platform applications, including deployments and configurations.
    accountshttps://accounts.mcp.digitalocean.com/mcpGet information about your DigitalOcean account, billing, balance, invoices, and SSH keys.
    databaseshttps://databases.mcp.digitalocean.com/mcpProvision, manage, and monitor managed database clusters (Postgres, MySQL, Redis, etc.).
    dokshttps://doks.mcp.digitalocean.com/mcpManage DigitalOcean Kubernetes clusters and node pools.
    dropletshttps://droplets.mcp.digitalocean.com/mcpCreate, manage, resize, snapshot, and monitor droplets (virtual machines) on DigitalOcean.
    insightshttps://insights.mcp.digitalocean.com/mcpMonitors your resources, endpoints and alert you when they're slow, unavailable, or SSL certificates are expiring.
    marketplacehttps://marketplace.mcp.digitalocean.com/mcpDiscover and manage DigitalOcean Marketplace applications.
    networkinghttps://networking.mcp.digitalocean.com/mcpManage domains, DNS records, certificates, firewalls, load balancers, reserved IPs, BYOIP Prefixes, VPCs, and CDNs.
    spaceshttps://spaces.mcp.digitalocean.com/mcpDigitalOcean Spaces object storage and Spaces access keys for S3-compatible storage.

    ---

    Claude Code

    Remote MCP (Recommended)

    To add a remote DigitalOcean MCP server to Claude Code, run the following command in your terminal:

    bash
    claude mcp add --transport http digitalocean-apps https://apps.mcp.digitalocean.com/mcp \
      --header "Authorization: Bearer YOUR_API_TOKEN"

    Replace YOUR_API_TOKEN with your actual DigitalOcean API token.

    You can add multiple services by running the command for each endpoint:

    bash
    claude mcp add --transport http digitalocean-databases https://databases.mcp.digitalocean.com/mcp \
      --header "Authorization: Bearer YOUR_API_TOKEN"
    
    claude mcp add --transport http digitalocean-droplets https://droplets.mcp.digitalocean.com/mcp \
      --header "Authorization: Bearer YOUR_API_TOKEN"

    See the Available Services section for the complete list of available endpoints.

    Local Installation

    To add the DigitalOcean MCP server to Claude Code, run the following command in your terminal:

    bash
    claude mcp add digitalocean-mcp \
      -e DIGITALOCEAN_API_TOKEN=YOUR_DO_API_TOKEN \
      -- npx @digitalocean/mcp --services apps,databases

    This will:

    • Add the MCP server under the default (local) scope — meaning it's only available inside the current folder.
    • Register it with the name digitalocean-mcp.
    • Enable the apps and databases services.
    • Pass your DigitalOcean API token securely to the server.
    • Store the configuration in your global Claude config at ~/.claude.json, scoped to the current folder.

    Verify Installation

    To confirm it's been added:

    bash
    claude mcp list

    Inspect Details

    To inspect details:

    bash
    claude mcp get digitalocean-mcp

    Remove Server

    To remove it:

    bash
    claude mcp remove digitalocean-mcp

    ##### User Scope

    Local scope is great when you're testing or only using the server in one project. User scope is better if you want it available everywhere.

    If you'd like to make the server available globally (so you don't have to re-add it in each project), you can use the user scope:

    bash
    claude mcp add -s user digitalocean-mcp-user-scope \
      -e DIGITALOCEAN_API_TOKEN=YOUR_DO_API_TOKEN \
      -- npx @digitalocean/mcp --services apps,databases

    This will:

    • Make the server available in all folders, not just the one you're in
    • Scope it to your user account
    • Store it in your global Claude config at ~/.claude.json

    To remove it:

    bash
    claude mcp remove -s user digitalocean-mcp-user-scope

    ---

    Claude Desktop

    Remote MCP (Recommended)

    Add the remote MCP servers to your claude_desktop_config.json file:

    json
    {
      "mcpServers": {
        "digitalocean-apps": {
          "url": "https://apps.mcp.digitalocean.com/mcp",
          "headers": {
            "Authorization": "Bearer YOUR_API_TOKEN"
          }
        },
        "digitalocean-databases": {
          "url": "https://databases.mcp.digitalocean.com/mcp",
          "headers": {
            "Authorization": "Bearer YOUR_API_TOKEN"
          }
        }
      }
    }

    You can add any of the endpoints listed in the Available Services section.

    Local Installation

    Add the following to your claude_desktop_config.json file:

    json
    {
      "mcpServers": {
        "digitalocean": {
          "command": "npx",
          "args": ["@digitalocean/mcp", "--services", "apps"],
          "env": {
            "DIGITALOCEAN_API_TOKEN": "YOUR_API_TOKEN"
          }
        }
      }
    }

    ---

    Cursor

    Remote MCP (Recommended)

    Add the remote MCP servers to your Cursor settings file located at ~/.cursor/config.json:

    json
    {
      "mcpServers": {
        "digitalocean-apps": {
          "url": "https://apps.mcp.digitalocean.com/mcp",
          "headers": {
            "Authorization": "Bearer YOUR_API_TOKEN"
          }
        },
        "digitalocean-databases": {
          "url": "https://databases.mcp.digitalocean.com/mcp",
          "headers": {
            "Authorization": "Bearer YOUR_API_TOKEN"
          }
        }
      }
    }

    You can add any of the endpoints listed in the Available Services section.

    Local Installation

    Install MCP Server

    Add the following to your Cursor settings file located at ~/.cursor/config.json:

    json
    {
      "mcpServers": {
        "digitalocean": {
          "command": "npx",
          "args": ["@digitalocean/mcp", "--services", "apps"],
          "env": {
            "DIGITALOCEAN_API_TOKEN": "YOUR_API_TOKEN"
          }
        }
      }
    }

    ##### Verify Installation

    1. Open Cursor and open Command Pallet ( Shift + ⌘ + P on Mac or Ctrl+ Shift + P on Windows/Linux )

    2. Search for "MCP" in the command pallet search bar

    3. Select "View: Open MCP Settings"

    4. Select "Tools & Integrations" from the left sidebar

    5. You should see "digitalocean" listed under Available MCP Servers

    6. Click on "N tools enabled" (N is the number of tools currently enabled).

    ##### Debugging

    To check MCP server logs and debug issues:

    1. Open the Command Palette (⌘+Shift+P on Mac or Ctrl+Shift+P on Windows/Linux)

    2. Type "Developer: Toggle Developer Tools" and press Enter

    3. Navigate to the Console tab to view MCP server logs

    4. You'll find MCP related logs as you interact with the MCP server

    ##### Testing the Connection

    In Cursor's chat, try asking: "List all my DigitalOcean apps" - this should trigger the MCP server to fetch your apps if properly configured. If you are getting an 401 error or authentication related errors, it is likely due to misconfiguring your access token.

    ---

    VS Code

    Remote MCP (Recommended)

    Add the remote MCP servers to your VS Code MCP configuration file:

    json
    {
      "mcp": {
        "inputs": [],
        "servers": {
          "digitalocean-apps": {
            "url": "https://apps.mcp.digitalocean.com/mcp",
            "headers": {
              "Authorization": "Bearer YOUR_API_TOKEN"
            }
          },
          "digitalocean-databases": {
            "url": "https://databases.mcp.digitalocean.com/mcp",
            "headers": {
              "Authorization": "Bearer YOUR_API_TOKEN"
            }
          }
        }
      }
    }

    You can add any of the endpoints listed in the Available Services section.

    Local Installation

    Add the following to your VS Code MCP configuration file:

    json
    {
      "mcp": {
        "inputs": [],
        "servers": {
          "mcpDigitalOcean": {
            "command": "npx",
            "args": [
              "@digitalocean/mcp",
              "--services",
              "apps"
            ],
            "env": {
              "DIGITALOCEAN_API_TOKEN": "YOUR_API_TOKEN"
            }
          }
        }
      }
    }

    ##### Verify Installation

    1. Open VS Code and open Command Pallet ( Shift + ⌘ + P on Mac or Ctrl+ Shift + P on Windows/Linux )

    2. Search for "MCP" in the command pallet search bar

    3. Select "MCP: List Servers"

    4. Verify that "mcpDigitalOcean" appears in the list of configured servers

    ##### Viewing Available Tools

    To see what tools are available from the MCP server:

    1. Open the Command Palette (⌘+Shift+P on Mac or Ctrl+Shift+P on Windows/Linux)

    2. Select "Agent" mode in the chatbox,

    3. Click "Configure tools" on the right, and check for digitalocean related tools under MCP Server: mcpDigitalocean. You should be able to list available tools like app-create, app-list, app-delete, etc.

    ##### Debugging

    To troubleshoot MCP connections:

    1. Open the Command Palette (⌘+Shift+P on Mac or Ctrl+Shift+P on Windows/Linux)

    2. Type "Developer: Toggle Developer Tools" and press Enter

    3. Navigate to the Console tab to view MCP server logs

    3. Check for connection status and error messages

    If you are getting an 401 error or authentication related errors, it is likely due to misconfiguring your access token.

    ---

    Prerequisites for Local Installation

    If you're using the local installation method (not Remote MCP), you'll need:

    • Node.js (v18 or later)
    • NPM (v8 or later)

    You can find installation guides at https://nodejs.org/en/download

    Verify your installation:

    bash
    node --version
    npm --version

    Quick Test

    To verify the local MCP server works correctly, you can test it directly from the command line:

    bash
    npx @digitalocean/mcp --services apps

    ---

    Configuration

    Local Installation Configuration

    When using the local installation, you use the --services flag to specify which service you want to enable. It is highly recommended to only enable the services you need to reduce context size and improve accuracy. See list of supported services below.

    bash
    npx @digitalocean/mcp --services apps,droplets

    Documentation

    Each service provides a detailed README describing all available tools, resources, arguments, and example queries. See the following files for full documentation:

    • Apps Service
    • Droplet Service
    • Account Service
    • Networking Service
    • Databases Service
    • Insights Service
    • Spaces Service
    • Marketplace Service
    • DOKS Service

    Example Tools

    • Deploy an app from a GitHub repo: create-app-from-spec
    • Resize a droplet: droplet-resize
    • Add a new SSH key: key-create
    • Create a new domain: domain-create
    • Enable backups on a droplet: droplet-enable-backups
    • Flush a CDN cache: cdn-flush-cache
    • Create a VPC peering connection: vpc-peering-create
    • Delete a VPC peering connection: vpc-peering-delete

    Contributing

    Contributions are welcome! If you encounter any issues or have ideas for improvements, feel free to open an issue or submit a pull request.

    1. Fork the repository.

    2. Create a new branch for your feature or bug fix.

    3. Submit a pull request with a clear description of your changes.

    License

    This project is licensed under the MIT License. See the LICENSE file for details.

    Similar MCP

    Based on tags & features

    • MC

      Mcp Cyclops

      Go·
      29
    • PO

      Portainer Mcp

      Go·
      72
    • MK

      Mkp

      Go·
      53
    • MC

      Mcpjungle

      Go·
      617

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • MC

      Mcp Cyclops

      Go·
      29
    • PO

      Portainer Mcp

      Go·
      72
    • MK

      Mkp

      Go·
      53
    • MC

      Mcpjungle

      Go·
      617

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k