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

spaceship-mcp-server

v0.1.0

Published

MCP server for the Spaceship domain registrar API. Domain availability, registration, DNS records, nameservers, transfers.

Readme

spaceship-mcp-server

npm

MCP server for the Spaceship domain registrar API. Lets Claude check domain availability, register/renew/transfer domains, manage DNS records, and delegate nameservers — without leaving the chat.

Tools

| Tool | What it does | Side effects | | ---------------------------------- | ---------------------------------------------- | --------------------- | | spaceship_check_availability | Bulk availability check | none | | spaceship_list_domains | Paginated list of owned domains | none | | spaceship_get_domain | Single-domain details | none | | spaceship_register_domain | Register a new domain (dry-run unless confirm) | money (confirmed) | | spaceship_renew_domain | Renew (dry-run unless confirm) | money (confirmed) | | spaceship_set_autorenew | Toggle auto-renewal | none until renewal | | spaceship_upsert_contact | Create/update a registrant contact | none | | spaceship_list_dns_records | List DNS records on a domain | none | | spaceship_set_dns_records | Create/update DNS records | DNS change | | spaceship_delete_dns_records | Delete specific DNS records | DNS change | | spaceship_point_to_vercel | Convenience: A/CNAME apex+www → Vercel | DNS change | | spaceship_set_nameservers | Replace authoritative nameservers | NS change | | spaceship_use_vercel_nameservers | Convenience: delegate NS to Vercel | NS change | | spaceship_get_async_operation | Poll the status of a long-running op | none |

Why dry-run for register/renew?

Registration and renewal cost real money. Both default to confirm: false, which returns the request body that would be sent. Re-call with confirm: true to actually charge.

Setup

  1. Generate an API key at https://www.spaceship.com/application/api-manager/. You get a key and a secret, both required.

  2. Install:

    npx spaceship-mcp-server
    # or globally
    npm install -g spaceship-mcp-server
  3. Add to your Claude Code MCP config (~/.claude.json):

    "mcpServers": {
      "spaceship": {
        "command": "npx",
        "args": ["-y", "spaceship-mcp-server"],
        "env": {
          "SPACESHIP_API_KEY": "...",
          "SPACESHIP_API_SECRET": "..."
        }
      }
    }
  4. Restart Claude Code to pick up the server.

Smoke test

export SPACESHIP_API_KEY=...
export SPACESHIP_API_SECRET=...
pnpm smoke

Hits two read-only endpoints (list domains, check availability) and prints results.

Auth

Header-based: X-Api-Key + X-Api-Secret. No OAuth, no token rotation. Keep both values out of source control — only put them in your MCP server env block or in a sourced ~/.config/*.env file with mode 600.

Async operations

Several mutating endpoints (register, set DNS, set nameservers) return an asyncOperationId in a spaceship-async-operationid response header. Poll spaceship_get_async_operation with that ID to check completion.

License

MIT.