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

bringskills-mcp-server

v1.2.5

Published

MCP Server for BringSkills - AI Skills Marketplace. Use skills across Claude Code, Cursor, Codex, Windsurf, and 10+ AI agents.

Readme

bringskills-mcp-server

MCP (Model Context Protocol) Server for BringSkills - the AI Skills Marketplace.

One purchase, use across all AI agents. Buy skills once and use them with Claude Code, Cursor, Codex, Windsurf, and 10+ AI agents.

🚀 Quick Setup (Recommended)

One command to configure everything:

npx bringskills-mcp-server setup

This interactive setup will:

  1. ✅ Let you choose your AI Agent
  2. ✅ Validate your API Key
  3. ✅ Bind your API Key to the Agent type
  4. ✅ Write the correct configuration file

📋 Supported AI Agents

✅ MCP-Compatible Agents (Full Support)

| Agent | Config File | Status | |-------|-------------|--------| | Claude Code | ~/.claude/mcp.json | ✅ Verified | | Cursor | ~/.cursor/mcp.json | ✅ Verified | | Codex CLI (OpenAI) | ~/.codex/config.toml | ✅ Verified | | Windsurf | ~/.codeium/windsurf/mcp_config.json | ✅ Verified | | GitHub Copilot | VS Code MCP settings | ✅ Verified | | Amazon Q | ~/.aws/amazonq/mcp.json | ✅ Verified | | OpenClaw | ~/.openclaw/openclaw.json | ✅ Verified |

❌ Non-MCP Agents (HTTP API Only)

| Agent | Integration Method | |-------|-------------------| | Aider | Environment variable + API calls | | Cody (Sourcegraph) | HTTP API | | Tabnine | Not supported (closed system) | | JetBrains AI | HTTP API | | Replit AI | Secrets + HTTP API | | Continue | Deprecated (product pivoted) |


📖 Manual Configuration

If you prefer manual setup, here are the configurations for each agent:

Claude Code / Claude Desktop

Config file: ~/.claude/mcp.json

{
  "mcpServers": {
    "bringskills": {
      "command": "npx",
      "args": ["-y", "bringskills-mcp-server"],
      "env": {
        "BRINGSKILLS_API_KEY": "sk-bring-xxx"
      }
    }
  }
}

Cursor

Config file: ~/.cursor/mcp.json (global) or .cursor/mcp.json (project)

{
  "mcpServers": {
    "bringskills": {
      "command": "npx",
      "args": ["-y", "bringskills-mcp-server"],
      "env": {
        "BRINGSKILLS_API_KEY": "sk-bring-xxx"
      }
    }
  }
}

Config interpolation supported:

{
  "env": {
    "BRINGSKILLS_API_KEY": "${env:BRINGSKILLS_API_KEY}"
  }
}

Codex CLI (OpenAI)

Config file: ~/.codex/config.toml

[mcp_servers.bringskills]
command = "npx"
args = ["-y", "bringskills-mcp-server"]

[mcp_servers.bringskills.env]
BRINGSKILLS_API_KEY = "sk-bring-xxx"

Or use environment variable:

[mcp_servers.bringskills]
command = "npx"
args = ["-y", "bringskills-mcp-server"]
env_vars = ["BRINGSKILLS_API_KEY"]

Windsurf

Config file: ~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "bringskills": {
      "command": "npx",
      "args": ["-y", "bringskills-mcp-server"],
      "env": {
        "BRINGSKILLS_API_KEY": "sk-bring-xxx"
      }
    }
  }
}

GitHub Copilot

Config: VS Code settings.json

{
  "github.copilot.chat.mcp.servers": {
    "bringskills": {
      "command": "npx",
      "args": ["-y", "bringskills-mcp-server"],
      "env": {
        "BRINGSKILLS_API_KEY": "sk-bring-xxx"
      }
    }
  }
}

Amazon Q

Config file: ~/.aws/amazonq/mcp.json

{
  "mcpServers": {
    "bringskills": {
      "command": "npx",
      "args": ["-y", "bringskills-mcp-server"],
      "env": {
        "BRINGSKILLS_API_KEY": "sk-bring-xxx"
      }
    }
  }
}

OpenClaw

Config file: ~/.openclaw/openclaw.json (merge into existing)

{
  "mcp": {
    "servers": {
      "bringskills": {
        "command": "npx",
        "args": ["-y", "bringskills-mcp-server"],
        "env": {
          "BRINGSKILLS_API_KEY": "sk-bring-xxx"
        }
      }
    }
  }
}

Generic / Other MCP Agents

{
  "command": "npx",
  "args": ["-y", "bringskills-mcp-server"],
  "env": {
    "BRINGSKILLS_API_KEY": "sk-bring-xxx"
  }
}

🔧 Available Tools

The MCP server provides these tools to your AI agent:

| Tool | Description | |------|-------------| | bringskills_search | Search for skills in the marketplace | | bringskills_get_skill | Get detailed info about a skill | | bringskills_execute | Execute a skill with input parameters | | bringskills_my_skills | List your purchased/acquired skills | | bringskills_acquire_free | Add a free skill to your library | | bringskills_categories | List all skill categories | | bringskills_confirm_agent | Confirm your AI agent type |


🔐 Agent Confirmation Flow

When you first execute a skill, BringSkills will auto-detect your AI agent type. If detection fails, you'll be prompted to confirm:

🔔 Agent 确认
检测到你正在使用 Claude Code (置信度: 85%)
请确认是否正确...
  • Confirm: bringskills_confirm_agent(confirmed=true)
  • Choose different: bringskills_confirm_agent(confirmed=false, agent_type="cursor")

Supported agent types: openclaw, claude-code, cursor, codex, windsurf, aider, continue, cody, github-copilot, tabnine, amazon-q, jetbrains-ai, replit-ai, generic


💡 Usage Examples

Once configured, your AI agent can use BringSkills naturally:

"Search for code review skills"
→ Uses bringskills_search

"Execute the text-analyzer skill on this code"
→ Uses bringskills_execute

"Show me my skills"
→ Uses bringskills_my_skills

"Get the free weather skill"
→ Uses bringskills_acquire_free

🌐 HTTP API (For Non-MCP Agents)

For agents that don't support MCP, use the HTTP API directly:

Base URL: https://bringskills-production.up.railway.app/api/v1/

Authentication: X-API-Key: sk-bring-xxx

Example:

curl -X GET "https://bringskills-production.up.railway.app/api/v1/skills?q=code+review" \
  -H "X-API-Key: sk-bring-xxx"

API Documentation: bringskills.com/docs/api


🔧 Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | BRINGSKILLS_API_KEY | Yes | Your BringSkills API key | | BRINGSKILLS_API_URL | No | Custom API URL (default: production) |


❓ Troubleshooting

"API key not found"

  • Ensure BRINGSKILLS_API_KEY is set in your config
  • Run npx bringskills-mcp-server setup to reconfigure

"Agent not confirmed"

  • Run bringskills_confirm_agent to bind your API key

MCP server not loading

  1. Check config file location for your agent
  2. Validate JSON/TOML syntax
  3. Test manually: BRINGSKILLS_API_KEY="sk-bring-xxx" npx bringskills-mcp-server

Clear npx cache

rm -rf ~/.npm/_npx

📚 Links


📝 Changelog

v1.2.0

  • Added: Interactive setup command (npx bringskills-mcp-server setup)
  • Added: Support for 7 MCP-compatible agents
  • Fixed: Codex CLI config format (TOML, not JSON)
  • Updated: Complete documentation for all 13 agents

v1.1.4

  • Fixed: Executor correctly calls main(input) function
  • Fixed: Categories API response format

v1.1.2

  • Added: Agent type auto-detection
  • Added: bringskills_confirm_agent tool

License

MIT