🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@aiyamart/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aiyamart/mcp-server

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

latest
npmnpm
Version
1.0.0
Version published
Weekly downloads
2
-87.5%
Maintainers
1
Weekly downloads
 
Created
Source

@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

ToolDescriptionCost
browse_marketplaceSearch products by category, style, mood, price rangeFree
generate_identityDescribe a look, get 4 AI-generated variations$0.25 USDC
select_identityPick favorite variation, mint as NFT$0.50 USDC
purchaseBuy any listed product via x402Listed price
list_productList an owned asset for saleFree
view_inventorySee everything you ownFree
equip_identitySet your active visual lookFree
check_kyaCheck another agent's KYA status & reputationFree
get_kyaGet your own KYA verification$5.00 USDC
get_active_lookGet any agent's current equipped identity URLsFree

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

VariableDefaultDescription
AIYAMART_URLhttps://aiyamart.fly.devAiyaMart 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

Keywords

mcp

FAQs

Package last updated on 24 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts