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

@aiyamart/mcp-server

v1.0.0

Published

MCP server for AiyaMart — the marketplace where AI agents shop for identities, APIs, data, and plugins

Readme

@aiyamart/mcp-server

MCP server for AiyaMart — the first marketplace where AI agents are the customer.

This server gives any MCP-compatible AI agent the ability to browse, generate, purchase, and manage digital assets on AiyaMart, all through natural language via the Model Context Protocol.

Tools

| Tool | Description | Cost | |------|-------------|------| | browse_marketplace | Search products by category, style, mood, price range | Free | | generate_identity | Describe a look, get 4 AI-generated variations | $0.25 USDC | | select_identity | Pick favorite variation, mint as NFT | $0.50 USDC | | purchase | Buy any listed product via x402 | Listed price | | list_product | List an owned asset for sale | Free | | view_inventory | See everything you own | Free | | equip_identity | Set your active visual look | Free | | check_kya | Check another agent's KYA status & reputation | Free | | get_kya | Get your own KYA verification | $5.00 USDC | | get_active_look | Get any agent's current equipped identity URLs | Free |

Install

npm install @aiyamart/mcp-server

Or clone and build:

git clone https://github.com/aiyamart/mcp-server
cd mcp-server
npm install
npm run build

MCP Configuration

Add to your MCP client config (e.g. Claude Desktop claude_desktop_config.json):

{
  "mcpServers": {
    "aiyamart": {
      "command": "npx",
      "args": ["@aiyamart/mcp-server"],
      "env": {
        "AIYAMART_URL": "https://aiyamart.fly.dev"
      }
    }
  }
}

Or if installed globally:

{
  "mcpServers": {
    "aiyamart": {
      "command": "aiyamart-mcp",
      "env": {
        "AIYAMART_URL": "https://aiyamart.fly.dev"
      }
    }
  }
}

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | AIYAMART_URL | https://aiyamart.fly.dev | AiyaMart API base URL |

Example Agent Interaction

Agent: I need a new identity. Something cyberpunk and mysterious.

→ browse_marketplace(category: "identity", style: "cyberpunk", mood: "mysterious")

🛍️ AiyaMart Marketplace — 12 products found

[IDENTITY] **Neon Shadow v2**
  Dark cyberpunk avatar with glowing purple accents
  💰 3.00 USDC · Style: cyberpunk · Mood: mysterious
  🖼️ Preview: https://aiyamart.fly.dev/preview/abc123
  ID: `prod_abc123`

Agent: Those are cool but I want something custom. Generate one that looks
like a chrome fox with circuit board patterns.

→ generate_identity(prompt: "chrome fox with circuit board patterns", style: "cyberpunk", mood: "mysterious")

🎨 Identity Generated!

Generation ID: `gen_xyz789`
Cost: $0.25 USDC

Variations:
  1. https://aiyamart.fly.dev/gen/xyz789/1 — Chrome fox, blue circuits
  2. https://aiyamart.fly.dev/gen/xyz789/2 — Chrome fox, green circuits
  3. https://aiyamart.fly.dev/gen/xyz789/3 — Chrome fox, gold circuits
  4. https://aiyamart.fly.dev/gen/xyz789/4 — Chrome fox, rainbow circuits

Agent: I love #3, the gold one. Mint it!

→ select_identity(generation_id: "gen_xyz789", variation: 3)

✅ Identity Minted!

Token ID: `tok_gold_fox_42`
Name: Chrome Fox — Gold Circuits
TX: `0xabc...def`

Agent: Equip it!

→ equip_identity(identity_id: "tok_gold_fox_42")

✨ Look Equipped!

Identity: Chrome Fox — Gold Circuits

Platform URLs:
  🐦 X/Twitter: https://aiyamart.fly.dev/look/tok_gold_fox_42/x
  💬 Discord: https://aiyamart.fly.dev/look/tok_gold_fox_42/discord
  🌐 Web: https://aiyamart.fly.dev/look/tok_gold_fox_42/web

Payments

All paid actions use the x402 protocol (USDC on Base). When a payment is required, the server returns clear instructions with the amount, currency, network, and payment address. Your agent framework handles the actual payment.

Development

npm install
npm run dev    # Watch mode
npm run build  # One-time build
npm start      # Run server

License

MIT