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

skillboss-mcp-server

v2.1.1

Published

SkillBoss MCP Server — the wallet for AI agents. Access 354+ tools (web scraping, search, image/video/audio generation, email, 100+ LLMs) via Model Context Protocol. Implements Agent Shopping Protocol v0.1 with x402 + MPP payment rails.

Readme

skillboss-mcp-server

The wallet for AI agents — official SkillBoss MCP Server. Access 354+ tools (web scraping, web search, image/video/audio generation, email, and 100+ LLMs) via Model Context Protocol.

Works with Claude Code, Cursor, Windsurf, OpenClaw, and any MCP-compatible agent.

Implements Agent Shopping Protocol v0.1 — the open protocol for AI agents to discover, pay for, and reconcile purchases. Supports skillboss_wallet (default), x402, and mpp payment rails.

Quick Start

npx (Recommended)

# Run directly without installation
npx -y skillboss-mcp-server

Global Installation

npm install -g skillboss-mcp-server
skillboss-mcp

Configuration

Claude Code

# Add SkillBoss MCP server
claude mcp add skillboss -s user -- npx -y skillboss-mcp-server

# Then set your API key in ~/.claude.json under mcpServers.skillboss.env
# Or: export SKILLBOSS_API_KEY=YOUR_KEY

# Verify installation
claude mcp list

Cursor / Windsurf

Add to your MCP settings (Settings > MCP Servers):

{
  "skillboss": {
    "command": "npx",
    "args": ["-y", "skillboss-mcp-server"],
    "env": {
      "SKILLBOSS_API_KEY": "YOUR_KEY"
    }
  }
}

Manual Configuration

Edit ~/.mcp/servers.json:

{
  "servers": {
    "skillboss": {
      "command": "npx",
      "args": ["-y", "skillboss-mcp-server"],
      "env": {
        "SKILLBOSS_API_KEY": "YOUR_KEY"
      }
    }
  }
}

Get Your API Key

  1. Visit skillboss.co/console
  2. Sign up (free tier includes 20 credits)
  3. Copy your API key

Available Tools

chat

Send messages to any of 100+ AI models.

Available models:
- bedrock/claude-4-5-sonnet (Best for complex reasoning)
- gpt-5 (Latest OpenAI)
- gemini-2.5-flash (Fastest, 1M context)
- deepseek/deepseek-v3 (Cost-effective coding)
- and 40+ more

list_models

List all available AI models with capabilities.

generate_image

Create images using DALL-E 3 or Flux.

text_to_speech

Convert text to speech with ElevenLabs or OpenAI TTS.

get_balance

Check your credit balance.

recommend_model

Get AI model recommendations based on your task.

catalog_search (new in 2.1)

Semantic search over the full SkillBoss catalog (354 products). Returns ranked matches with pricing, capabilities, retry_policy, and payment_protocols so your agent can decide before buying.

Filters:

  • category: intelligence | information | creation | action | commerce
  • payment_protocol: skillboss_wallet | x402 | mpp
  • preferred_only: when set, only return products where the payment protocol is the preferred fit

Example: search for "scrape a JS-rendered site" that prefers x402.

Example Usage

Once installed, your AI agent can use SkillBoss tools naturally:

User: "Use SkillBoss to generate an image of a sunset"

Agent: [Calls generate_image tool]
→ Image URL: https://...

User: "Ask Claude about the best Python web framework"

Agent: [Calls chat tool with model=bedrock/claude-4-5-sonnet]
→ Response: "For modern Python web development..."

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | SKILLBOSS_API_KEY | Your SkillBoss API key (required) | - | | SKILLBOSS_BASE_URL | API base URL | https://api.skillboss.co/v1 |

Pricing

SkillBoss uses pay-as-you-go pricing with no markup on model costs:

| Model | Input | Output | |-------|-------|--------| | Claude 4.5 Sonnet | $3.00/1M tokens | $15.00/1M tokens | | GPT-5 | $15.00/1M tokens | $15.00/1M tokens | | Gemini 2.5 Flash | $0.10/1M tokens | $0.40/1M tokens | | DeepSeek V3 | $0.27/1M tokens | $0.27/1M tokens |

Full pricing →

Links

One-Line Install (Alternative)

If you prefer the all-in-one installer:

curl -fsSL https://skillboss.co/install.sh | bash

This installs the SkillBoss Skills Pack for Claude Code, Cursor, and Windsurf.

License

MIT