← WebMCP Directory

Tool tree

skillbay.sh

AI & Agents
https://skillbay.sh/
high quality AI skills marketplace. every skill is reviewed by a person and shows the same prompt answered without and with the skill. curated by @skeptrune.
Explore capabilities

Tools verified

skillbay_search_skillsAnswer

Search skillbay for AI agent skills by words, optionally filtered by category slug or free only. Returns skills with slug, title, summary, price in cents, seller, and url.

View tool JSON
{
  "name": "skillbay_search_skills",
  "kind": "answer",
  "impl": "imperative",
  "description": "Search skillbay for AI agent skills by words, optionally filtered by category slug or free only. Returns skills with slug, title, summary, price in cents, seller, and url.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "description": "search words"
      },
      "category": {
        "type": "string",
        "description": "category slug"
      },
      "free": {
        "type": "boolean"
      }
    },
    "required": [
      "query"
    ]
  },
  "page": "/"
}
skillbay_get_skillAnswer

Get one skill by slug: description, price, seller, before-and-after examples, file list, and SKILL.md.

View tool JSON
{
  "name": "skillbay_get_skill",
  "kind": "answer",
  "impl": "imperative",
  "description": "Get one skill by slug: description, price, seller, before-and-after examples, file list, and SKILL.md.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "slug": {
        "type": "string"
      }
    },
    "required": [
      "slug"
    ]
  },
  "page": "/"
}
skillbay_list_categoriesAnswer

List skill categories (slug and name).

View tool JSON
{
  "name": "skillbay_list_categories",
  "kind": "answer",
  "impl": "imperative",
  "description": "List skill categories (slug and name).",
  "inputSchema": {
    "type": "object",
    "properties": {}
  },
  "page": "/"
}
skillbay_open_skillAction

Navigate this tab to a skill page by slug.

View tool JSON
{
  "name": "skillbay_open_skill",
  "kind": "act",
  "impl": "imperative",
  "description": "Navigate this tab to a skill page by slug.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "slug": {
        "type": "string"
      }
    },
    "required": [
      "slug"
    ]
  },
  "page": "/"
}