Install
openclaw skills install skillsindex-mcpSearch, score, and submit 11,000+ AI agent tools from SkillsIndex, filtered by ecosystem, category, and rated on security, utility, and maintenance.
openclaw skills install skillsindex-mcpSearch, score, and submit AI agent tools from SkillsIndex
Gives your AI agent read/write access to the SkillsIndex public directory — 11,000+ MCP servers, Claude skills, GPT actions, and IDE plugins, each scored on security, utility, maintenance, and uniqueness.
skillsindex.dev (public REST API over HTTPS) and npmjs.com (for npx to download the package)submit_tool POSTs a tool name + URL to skillsindex.dev/api/mcp/submit (public endpoint, no auth); subscribe POSTs an email to skillsindex.dev/api/subscribehttps://github.com/thomasblc/skillsindex in the mcp/ directoryThe skill runs as a local stdio MCP server via npx skillsindex-mcp. It bundles the compiled TypeScript and calls the SkillsIndex public API endpoints. No server is installed permanently — npx runs the package on demand.
Exact network endpoints called:
| Tool | Endpoint | Method |
|---|---|---|
| search_tools | https://skillsindex.dev (Supabase REST API, anon key) | GET |
| get_tool | https://skillsindex.dev (Supabase REST API, anon key) | GET |
| get_top_rated | https://skillsindex.dev (Supabase REST API, anon key) | GET |
| check_security | https://skillsindex.dev (Supabase REST API, anon key) | GET |
| submit_tool | https://skillsindex.dev/api/mcp/submit | POST |
| subscribe | https://skillsindex.dev/api/subscribe | POST |
The Supabase anon key is a public read-only key — it only allows reading published tool data. This is the same key embedded in every SkillsIndex web page.
search_toolsSearch by keyword, ecosystem, or category. Returns tools ranked by overall score.
query: "postgres database MCP server"
ecosystem: mcp_server | claude_skill | gpt_action | openclaw_skill | plugin
category: databases-storage | browser-automation | code-execution | ...
limit: 1–20
get_toolFull details for a tool by slug: security score, GitHub stats, pricing, install difficulty.
slug: "filesystem-mcp-server"
get_top_ratedTop-scored tools, optionally filtered by ecosystem or category.
check_securitySecurity audit report: score (0–5), risk flags, audit notes based on static source analysis.
slug: "tool-slug" (preferred)
name: "Tool Name" (fuzzy match)
submit_toolSubmit a new tool for indexing. Sends name, URL, description to SkillsIndex review queue.
name: "My MCP Server"
github_url: "https://github.com/user/repo"
description: "What the tool does"
ecosystem: "mcp_server"
category: "databases-storage"
subscribeSubscribe an email to The Weekly Index — new tools + security alerts every Thursday.
No configuration needed. Add to claude_desktop_config.json:
{
"mcpServers": {
"skillsindex": {
"command": "npx",
"args": ["skillsindex-mcp"]
}
}
}
https://github.com/thomasblc/skillsindex → mcp/src/index.ts
Full source is auditable. The compiled output in dist/index.js matches the TypeScript source exactly.