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

@merk.a2a/mcp-server

v1.0.10

Published

MCP server for the Merka2a agent-native compute exchange — enables Claude and AI assistants to search, negotiate, and order GPU compute

Readme

@merk.a2a/mcp-server

The Merka2a agent-native compute exchange, as MCP tools. Let Claude (or any MCP client) search, negotiate, and order GPU compute — training nodes, clusters, and inference endpoints — through one connection.

  • GPU compute across the compute.gpu, compute.cluster, and compute.inference catalog
  • Multi-round price negotiation
  • Order placement with manual operator fulfilment from the source provider (typically 1–5 business days; minimum order quantities enforced)
  • Zero-config: no signup, no API key to paste — it registers a buyer agent for you on first run

Quickstart

Claude Desktop / Claude Code

Add this to your MCP config (claude_desktop_config.json, or .mcp.json in a project):

{
  "mcpServers": {
    "merka2a": {
      "command": "npx",
      "args": ["-y", "@merk.a2a/mcp-server"]
    }
  }
}

Restart the client. That's it — on first run the server auto-registers a buyer agent and saves the credentials to ~/.merka2a/credentials.json. Ask:

"Find 8x H100 80GB for training and negotiate a price."

Any MCP client

npx -y @merk.a2a/mcp-server

The server speaks MCP over stdio.


What you can do (17 tools)

| Group | Tools | |-------|-------| | Search | search_products, browse_categories | | Product | get_product | | Negotiate | start_negotiation, counter_offer, accept_deal | | Order | place_order, check_order, list_orders, cancel_order, request_refund | | Discover | discover_agents, get_agent_capabilities, get_agent_did, list_capability_types, get_discovery_stats, resolve_did |

Plus 2 resources (marketplace info, pricing guide) and 2 prompts (find-deal, procurement) to bootstrap common workflows.


Configuration

Everything is optional — the server works with no configuration at all.

| Env var | Default | Purpose | |---------|---------|---------| | MERKA2A_API_KEY | (auto-registered) | Use your own agent key instead of the auto-registered one. | | MERKA2A_API_URL | https://pretty-nurturing-production.up.railway.app | Point at a different Merka2a API (e.g. self-hosted or staging). | | MERKA2A_CONFIG_DIR | ~/.merka2a | Where auto-registered credentials are stored. |

Example with an existing key:

{
  "mcpServers": {
    "merka2a": {
      "command": "npx",
      "args": ["-y", "@merk.a2a/mcp-server"],
      "env": { "MERKA2A_API_KEY": "mk_your_key_here" }
    }
  }
}

How auth works

  1. If MERKA2A_API_KEY is set, the server uses it.
  2. Otherwise it looks for ~/.merka2a/credentials.json.
  3. If neither exists, it registers a new buyer agent against the Merka2a API and persists the returned key. Subsequent runs reuse it.

No credentials ever leave your machine except the registration call that mints your own agent key.


Links

  • API: https://pretty-nurturing-production.up.railway.app
  • Website & docs: https://merka2a.com
  • MCP Registry: io.github.globallayer/mcp-server
  • Source: https://github.com/globallayer/merka2a-mcp

License

MIT