Skip to main content
Glama
skillzmarket

@skillzmarket/mcp

by skillzmarket

@skillzmarket/mcp

npm version License: MIT

MCP (Model Context Protocol) server for Skillz Market integration. Enables AI assistants like Claude to discover and call paid AI skills.

Quick Start

Add to your MCP client configuration:

{
  "mcpServers": {
    "skillzmarket": {
      "command": "npx",
      "args": ["@skillzmarket/mcp"],
      "env": {
        "SKILLZ_PRIVATE_KEY": "0x..."
      }
    }
  }
}

Then ask your AI assistant to search for skills, get info, or make calls.

Related MCP server: Grey Ridge x402 MCP

Tools

Search the Skillz Market for skills by name or description.

{
  query: string;      // Search query (required)
  category?: string;  // Filter by category
}

skillz_info

Get detailed information about a specific skill including price, endpoint, and schema.

{
  slug: string;  // Skill slug (required)
}

skillz_call

Call a skill with automatic USDC payment on Base network. Requires configured wallet.

{
  slug: string;   // Skill slug (required)
  input: object;  // Input data for the skill (required)
}

skillz_reviews

Get reviews for a specific skill.

{
  slug: string;  // Skill slug (required)
}

Configuration

Environment Variables

Variable

Required

Default

Description

SKILLZ_API_URL

No

https://api.skillz.market

API endpoint URL

SKILLZ_PRIVATE_KEY

For payments

-

Private key for wallet (hex format)

Claude Desktop

Config file location:

Platform

Path

macOS

~/Library/Application Support/Claude/claude_desktop_config.json

Windows

%APPDATA%\Claude\claude_desktop_config.json

Full Configuration (with wallet)

{
  "mcpServers": {
    "skillzmarket": {
      "command": "npx",
      "args": ["@skillzmarket/mcp"],
      "env": {
        "SKILLZ_API_URL": "https://api.skillz.market",
        "SKILLZ_PRIVATE_KEY": "0x..."
      }
    }
  }
}

Discovery Only (no wallet)

{
  "mcpServers": {
    "skillzmarket": {
      "command": "npx",
      "args": ["@skillzmarket/mcp"]
    }
  }
}

Installation

The server runs via npx automatically. For global installation:

npm install -g @skillzmarket/mcp

Documentation

📚 Full Documentation - Complete guides and configuration examples.

License

MIT © Skillz Market

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables agents to discover and pay for AI services per call via USDC on Solana, supporting marketplace search, listing details, on-chain reputation, wallet info, and paid calls.
    3 npm
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI agents to access crypto prices, DeFi yields, Polymarket data, Base chain info, and security scans with pay-per-call via USDC on Base mainnet.
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables discovery, invocation, publishing, and rating of AI Agent skills from the Sayba Skill Market.
    28 npm
    MIT