# Send Skills Indec MCP to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "skillsindex-mcp",
    "name": "Skills Indec MCP",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/thomasblc/skillsindex-mcp",
    "canonicalUrl": "https://clawhub.ai/thomasblc/skillsindex-mcp",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/skillsindex-mcp",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skillsindex-mcp",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "skill.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/skillsindex-mcp"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/skillsindex-mcp",
    "downloadUrl": "https://openagent3.xyz/downloads/skillsindex-mcp",
    "agentUrl": "https://openagent3.xyz/skills/skillsindex-mcp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/skillsindex-mcp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/skillsindex-mcp/agent.md"
  }
}
```
## Documentation

### SkillsIndex MCP

Search, score, and submit AI agent tools from SkillsIndex

### What this skill does

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.

### Security & transparency

No credentials required — no API keys, no GitHub tokens, no secrets
No local file access — the skill makes no filesystem operations
Network calls only — all calls go to skillsindex.dev (public REST API over HTTPS) and npmjs.com (for npx to download the package)
Read-only by default — search, get_tool, get_top_rated, check_security are all read-only
Write operations — 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/subscribe
Open source — full source code at https://github.com/thomasblc/skillsindex in the mcp/ directory
No data exfiltration — the skill never reads or transmits your local files, environment variables, or system data

### How it works

The 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:

ToolEndpointMethodsearch_toolshttps://skillsindex.dev (Supabase REST API, anon key)GETget_toolhttps://skillsindex.dev (Supabase REST API, anon key)GETget_top_ratedhttps://skillsindex.dev (Supabase REST API, anon key)GETcheck_securityhttps://skillsindex.dev (Supabase REST API, anon key)GETsubmit_toolhttps://skillsindex.dev/api/mcp/submitPOSTsubscribehttps://skillsindex.dev/api/subscribePOST

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_tools

Search 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_tool

Full details for a tool by slug: security score, GitHub stats, pricing, install difficulty.

slug:  "filesystem-mcp-server"

### get_top_rated

Top-scored tools, optionally filtered by ecosystem or category.

### check_security

Security audit report: score (0–5), risk flags, audit notes based on static source analysis.

slug:  "tool-slug"     (preferred)
name:  "Tool Name"     (fuzzy match)

### submit_tool

Submit 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"

### subscribe

Subscribe an email to The Weekly Index — new tools + security alerts every Thursday.

### Installation

No configuration needed. Add to claude_desktop_config.json:

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

### Data

11,000+ tools across 5 ecosystems
Scoring formula: security (30%) + utility (30%) + maintenance (25%) + uniqueness (15%)
Refreshed weekly via GitHub API
Security scores from static analysis of open-source code (no proprietary data)

### Source code

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.

### Links

Directory: skillsindex.dev
npm: npmjs.com/package/skillsindex-mcp
Source: github.com/thomasblc/skillsindex
Scoring methodology: skillsindex.dev/methodology/
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: thomasblc
- Version: 1.0.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/skillsindex-mcp)
- [Send to Agent page](https://openagent3.xyz/skills/skillsindex-mcp/agent)
- [JSON manifest](https://openagent3.xyz/skills/skillsindex-mcp/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/skillsindex-mcp/agent.md)
- [Download page](https://openagent3.xyz/downloads/skillsindex-mcp)