Visão geral

Find skill

MCPfind_skillREADno token needed

Search the Docsbook docs-skills catalog (Docsbook-io/docs-skills) for a skill matching the user's request. Returns matching SKILL.md files with raw_url — read the skill via WebFetch and follow its steps. Use it when the user wants a repeatable, multi-step workflow. NOT the first move for a request a tool here answers directly — create_workspace, write_docs, update_, register_webhook_, get_ — call that tool.

Arguments
querystringrequired

Free-text description of what the user wants, e.g. 'enable auto-translation' or 'create AGENTS.md'.

filtersobjectoptional

filters fields#

Field Type Required Description
category string no Restrict matches to a single skill category. One of: analysis, creation, publishing, automation, observability.
requires_plan string no Restrict matches to skills available on this plan. One of: free, pro, business.
max_results integer no Maximum number of matches to return (1-20). Default 5.

Call it#

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "find_skill",
    "arguments": {
      "query": "<query>"
    }
  }
}
curl -X POST 'https://docsbook.io/api/mcp/server' \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json, text/event-stream' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"find_skill","arguments":{"query":"<query>"}}}'

Updated

Esta página foi útil?