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

@6missedcalls-ai/zora-mcp-server

v0.1.4

Published

A MCP server for trading Zora Protocol tokens on the Base Mainnet.

Readme

Logo

Zora Protocol MCP Server

A Model Context Protocol (MCP) server integrating Coinbase AgentKit and the Zora Protocol SDK for AI-driven on-chain interactions.

This package provides the zora-mcp-server binary, which Claude Desktop (or any MCP-enabled client) can use to interact with Base via Zora Protocol.

npm version license Open Issues Pull Requests

Important Notes

  • Testing environment: All testing has been performed in Claude Desktop.

Installation

npm install -g @6missedcalls-ai/zora-mcp-server

This makes the agentkit command available system-wide.

Configure MCP for Client (Claude, etc.,)

{
  "mcpServers": {
    "zora-mcp-server": {
      "command": "zora-mcp-server",
      "args": [],
      "env": {
        "CDP_API_KEY_ID": "<CDP_API_KEY_ID>",
        "CDP_API_KEY_SECRET": "<CDP_API_KEY_SECRET>",
        "CDP_WALLET_SECRET": "<CDP_WALLET_SECRET>",
        "SMART_WALLET_ADDRESS": "<SMART_WALLET_ADDRESS>",
        "PRIVATE_KEY": "<PRIVATE_KEY>",
        "NETWORK_ID": "base-mainnet",
        "ZORA_API_KEY": "<ZORA_API_KEY>"
      }
    }
  }
}

Run Locally

Clone the project

git clone https://github.com/6missedcalls/zora-mcp.git

CD into the Repository

cd zora-mcp

Install NPM Packages

npm install

Build MCP Server

npm run build

Configure MCP for Client (Claude, etc.,)

{
  "mcpServers": {
    "zora-mcp-server": {
      "command": "node",
      "args": ["<full_path_to_project>/zora-mcp/build/index.js"],
      "env": {
        "CDP_API_KEY_ID": "<CDP_API_KEY_ID>",
        "CDP_API_KEY_SECRET": "<CDP_API_KEY_SECRET>",
        "CDP_WALLET_SECRET": "<CDP_WALLET_SECRET>",
        "SMART_WALLET_ADDRESS": "<SMART_WALLET_ADDRESS>",
        "PRIVATE_KEY": "<PRIVATE_KEY>",
        "NETWORK_ID": "base-mainnet",
        "ZORA_API_KEY": "<ZORA_API_KEY>"
      }
    }
  }
}

Usage/Examples

Once a client (Claude, etc.) has been properly configured you can use natural language to invoke commands.

  • get top 20 tokens by volume on zora
  • get token information for 0x1d95c975ef9a1721a69105521b6efaf88348ac80
  • get new coins on the zora protocol
  • get last traded tokens on the zora protocol
  • get the most valuable tokens on zora protocol
  • get the top gainers on zora protocol today
  • swap $5 ETH for USDC
  • send $5 ETH to <wallet_address>
  • trade 75% my "eth" as my input token with 5% slippage for contract 0xd769d56f479e9e72a77bb1523e866a33098feec5

Feedback

If you have any feedback, please create an issue here.

Contributing

Contributions are always welcome!

Please fork the repository and make your changes. Then create a Pull Request.

License

MIT License