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

@zeroindex-ai/mcp-porkbun

v0.2.1

Published

MCP server exposing Porkbun domain and DNS APIs to Claude and other MCP clients

Downloads

520

Readme

@zeroindex-ai/mcp-porkbun

MCP server exposing Porkbun's domain and DNS APIs to Claude Desktop, Claude Code, Cursor, Zed, and any other Model Context Protocol client.

Lets you ask things like:

  • "List all my domains and their expiry dates."
  • "Show me every DNS record on zeroindex.ai."
  • "Which of my domains expire in the next 90 days?"

Tools

| Tool | What it does | | ------------------ | ------------------------------------------------------------------------------------------------------------------ | | ping | Verifies your Porkbun API credentials work; returns the calling IP. Run this first if anything looks broken. | | list_domains | Returns every domain in the account with status, expiry, auto-renew, and (optionally) labels. Supports pagination. | | list_dns_records | Returns every DNS record (A, AAAA, CNAME, MX, TXT, etc.) for a given domain. |

All three are read-only. Mutating tools (renew, edit DNS) deliberately omitted in v0.1; coming in a later release.

Install

The server runs via npx — no permanent install needed:

npx -y @zeroindex-ai/mcp-porkbun

Configure

You need a Porkbun API key pair. Create one at porkbun.com/account/api and enable API access on each domain you want the server to see (Domain Management → click the domain → "API ACCESS" toggle).

Set both keys as environment variables in your MCP client config (next section).

Use with Claude Desktop

Add this to your claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "porkbun": {
      "command": "npx",
      "args": ["-y", "@zeroindex-ai/mcp-porkbun"],
      "env": {
        "PORKBUN_API_KEY": "pk1_xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
        "PORKBUN_SECRET_API_KEY": "sk1_xxxxxxxxxxxxxxxxxxxxxxxxxxxx"
      }
    }
  }
}

Restart Claude Desktop. Then ask:

Use the porkbun ping tool to confirm credentials are working.

If ping returns your IP, the other two tools are ready to use.

Use with Claude Code

claude mcp add porkbun \
  --env PORKBUN_API_KEY=pk1_xxxx \
  --env PORKBUN_SECRET_API_KEY=sk1_xxxx \
  -- npx -y @zeroindex-ai/mcp-porkbun

Local development

git clone https://github.com/zeroindex-ai/mcp-pack
cd mcp-pack
pnpm install
PORKBUN_API_KEY=pk1_... PORKBUN_SECRET_API_KEY=sk1_... pnpm --filter @zeroindex-ai/mcp-porkbun dev

License

MIT — see LICENSE at the monorepo root.