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

getskills-mcp

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

getskills-mcp

MCP server for GetSkills — search and install AI skills from inside Claude Code, Cursor, or any MCP-compatible client.

latest
Source
npmnpm
Version
0.2.3
Version published
Weekly downloads
50
-78.63%
Maintainers
1
Weekly downloads
 
Created
Source

getskills-mcp

Add to Cursor Add to VS Code npm

Sidsaladi9/getskills MCP server

MCP server for GetSkills. Search and install AI skills directly from inside Claude Code, Cursor, or any MCP-compatible client — no browser needed.

Claude Code — one command:

claude mcp add getskills -- npx -y getskills-mcp

What it does

Lets your AI assistant pull skills from the GetSkills catalog (3,000+ skills for Claude Code, Cursor, ChatGPT, etc.) into your local skills folder with a single tool call.

Tools exposed:

ToolPurpose
search_skillsFull-text search the catalog by query, category, or platform
get_skillFetch a single skill by slug (incl. full skill_code)
install_skillWrite SKILL.md to ~/.claude/skills/<slug>/
list_categoriesList all categories with skill counts
list_packsList the 8 curated starter packs (Engineer, Founder, PM, SRE, Designer, Data, Sales, Creator)
install_packInstall every skill in a pack at once

Install

Add to Claude Code

claude mcp add getskills -- npx -y getskills-mcp

That's it. Open any Claude Code session and you can ask:

"Search GetSkills for a race condition debugger and install the top one."

Claude will call search_skills, find debug-race-condition-hunter, then call install_skill to write it to ~/.claude/skills/debug-race-condition-hunter/SKILL.md. The skill is auto-loaded in every future Claude Code session.

Add to Cursor / other MCP clients

Add to your client's MCP config (e.g. Cursor's mcp.json):

{
  "mcpServers": {
    "getskills": {
      "command": "npx",
      "args": ["-y", "getskills-mcp"]
    }
  }
}

Run from source (for development)

git clone https://github.com/Sidsaladi9/getskills.git
cd getskills/mcp-server
npm install
npm run build
node dist/index.js   # starts the MCP stdio server

Configuration

Environment variables (all optional):

VariableDefaultPurpose
GETSKILLS_INSTALL_DIR~/.claude/skillsWhere install_skill writes the SKILL.md file. Override for Cursor (.cursor/rules) or testing.
GETSKILLS_API_URLhttps://ckayrjtuviysrmilasiw.supabase.coAPI endpoint. Override for self-hosted forks.
GETSKILLS_ANON_KEY(built-in public anon key)Override only if you self-host.

Example usage in Claude Code

1. Search for a skill:

You:    Find me a skill for writing PRDs.
Claude: [calls search_skills(query="PRD writer")]
        I found 3 matches. The top result is "PRD Writer" by Sid Saladi —
        a thorough PRD template with sections for problem, scope, success
        metrics, and rollout plan.

2. Install the whole Founder Pack:

You:    I'm preparing for a fundraise. Install the founder pack.
Claude: [calls install_pack(pack_slug="founder-pack")]
        Done. Installed 10 skills to ~/.claude/skills/:
          • founder-investor-update-honest
          • founder-board-memo-tough-quarter
          • founder-fundraising-narrative-pressure-test
          • founder-term-sheet-decoder
          • founder-runway-extension-playbook
          ... (5 more)
        Restart Claude Code in this project — they'll auto-load.

How it works

The server is a standard MCP stdio server. Read-only catalog access goes through GetSkills' public Supabase REST endpoint with the anon key. Install writes SKILL.md files locally; no credentials needed.

Develop

npm run dev      # tsx, hot-reload
npm run build    # compile to dist/
npm run inspect  # launch MCP Inspector against the server
./test-smoke.sh  # JSON-RPC smoke test (6 tools, end-to-end)

License

MIT — see GetSkills.

Built with Claude Code by Sid Saladi.

Keywords

mcp

FAQs

Package last updated on 26 Jul 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