npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@smorchestraai-code/contabo-mcp

v1.0.0

Published

MCP server for Contabo VPS/VDS lifecycle management. 57 tools across instances, DNS, snapshots, tags, networks, secrets, users, domains, images, PTR records — give Claude full operational control with your own Contabo credentials.

Readme

Contabo MCP

Give Claude full operational control over your Contabo VPS/VDS infrastructure. أعطِ Claude تحكمًا كاملًا في بنيتك التحتية على Contabo.

A Model Context Protocol (MCP) server for Contabo — 57 tools across instances, DNS, snapshots, tags, networks, secrets, users, domains, images, PTR records, and audit logs. Plug it into Claude Desktop and ask Claude to provision, scale, snapshot, or audit your servers in natural language.

npm CI License: MIT


Install in one minute

You need: Node.js 20 or newer (download from nodejs.org) and Claude Desktop.

1. Find your Claude Desktop config file:

| OS | Path | |---|---| | Windows | %APPDATA%\Claude\claude_desktop_config.json | | macOS | ~/Library/Application Support/Claude/claude_desktop_config.json | | Linux | ~/.config/Claude/claude_desktop_config.json |

If the file doesn't exist, create it.

2. Paste this block (replace the four placeholders with your Contabo API credentials):

{
  "mcpServers": {
    "contabo": {
      "command": "npx",
      "args": ["-y", "@smorchestraai-code/contabo-mcp"],
      "env": {
        "CONTABO_CLIENT_ID": "your-client-id-here",
        "CONTABO_CLIENT_SECRET": "your-client-secret-here",
        "CONTABO_API_USER": "your-api-user-email-here",
        "CONTABO_API_PASSWORD": "your-api-password-here"
      }
    }
  }
}

3. Restart Claude Desktop. Open a new chat and ask "list my Contabo instances" — Claude should respond with your VPS list.

Platform-specific walkthroughs: Windows · macOS · Troubleshooting


Where to get your Contabo credentials

  1. Sign in to my.contabo.com
  2. Go to Account → API
  3. Click Create API user if you don't have one
  4. Copy the four values into the config above:
    • CONTABO_CLIENT_ID — shown as "Client ID"
    • CONTABO_CLIENT_SECRET — shown as "Client Secret"
    • CONTABO_API_USER — the email address of the API user
    • CONTABO_API_PASSWORD — the password you set for the API user

Privacy: these credentials live ONLY in your local Claude Desktop config on YOUR machine. SMOrchestra never sees them. The MCP server uses Contabo's OAuth 2.0 ROPC flow — tokens are short-lived (300 seconds) and refreshed automatically.


What you can ask Claude

Once installed, Claude has 57 tools to work with your Contabo account:

| Category | Examples | |---|---| | Instances | list / create / cancel / restart / shutdown / reinstall / rescue / get details | | DNS | list zones / create / update / delete records, register domains | | Snapshots | create / list / restore / delete snapshots | | Tags | create / assign / unassign tags across resources | | Object Storage | create / list / delete buckets, stats | | Networks | private networks: create / attach / detach / delete | | Secrets | create / get / list / delete secret store entries | | Users | create / list / get API users | | Domains | list / check availability / register | | Images | list / upload / delete custom images | | PTR records | get / set reverse DNS | | Audit logs | search across instances, snapshots, actions |

Natural language examples:

  • "Create a new Cloud VPS L in Germany with the latest Ubuntu image"
  • "Snapshot my main server, name it 'before-migration', then run apt upgrade on it"
  • "List every DNS zone I own and show me which ones have wildcard records"
  • "What did I change on instance #12345 last week?" (uses audit logs)

Updating

Because the config uses npx -y, you always get the latest published version on every Claude Desktop restart. No manual updates needed.


Local development

git clone https://github.com/SMOrchestra-ai/contabo-mcp.git
cd contabo-mcp
npm install
cp .env.example .env   # then fill in your CONTABO_* values
npm test
npm run dev            # hot-reload via tsx

The test suite (338 tests, ~17 seconds) mocks the Contabo API completely — no live calls, no credentials needed to run tests.


Contributing

Issues and pull requests welcome. For students wiring this into their first MicroSaaS:


License

MIT — © 2026 SMOrchestra.ai / Mamoun Alamouri