← WebMCP Directory

Tool tree

skillsmp.com

Developer Tools
https://skillsmp.com/
Searchable marketplace of AI agent skills
Explore capabilities

Tools verified

open_skill_searchAction

Open the SkillsMP search page for a query so the user and agent can inspect matching Agent Skills together.

View tool JSON
{
  "name": "open_skill_search",
  "kind": "act",
  "impl": "imperative",
  "description": "Open the SkillsMP search page for a query so the user and agent can inspect matching Agent Skills together.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "description": "Search keyword to prefill on the SkillsMP search page."
      }
    },
    "required": [
      "query"
    ]
  }
}
search_skillsAnswer

Search the SkillsMP catalog for Agent Skills by keyword, with optional content-language filtering. Returns public skill results and pagination metadata.

View tool JSON
{
  "name": "search_skills",
  "kind": "answer",
  "impl": "imperative",
  "description": "Search the SkillsMP catalog for Agent Skills by keyword, with optional content-language filtering. Returns public skill results and pagination metadata.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "description": "Search keyword, such as seo, browser automation, or figma."
      },
      "page": {
        "type": "number",
        "description": "Page number, starting at 1.",
        "minimum": 1,
        "maximum": 50
      },
      "limit": {
        "type": "number",
        "description": "Results per page.",
        "minimum": 1,
        "maximum": 50
      },
      "language": {
        "type": "string",
        "enum": [
          "en",
          "zh",
          "ja",
          "ko",
          "es",
          "pt",
          "de",
          "fr",
          "ar",
          "afr",
          "aka",
          "amh",
          "aze",
          "bel",
          "ben",
          "bul",
          "cat",
          "ces",
          "cym",
          "dan",
          "ell",
          "epo",
          "est",
          "fin",
          "guj",
          "heb",
          "hin",
          "hrv",
          "hun",
          "hye",
          "ind",
          "ita",
          "jav",
          "kan",
          "kat",
          "kaz",
          "khm",
          "lat",
          "lav",
          "lit",
          "mal",
          "mar",
          "mkd",
          "msa",
          "mya",
          "nep",
          "nld",
          "nob",
          "ori",
          "pan",
          "pes",
          "pol",
          "ron",
          "rus",
          "sin",
          "slk",
          "slv",
          "sna",
          "srp",
          "swa",
          "swe",
          "tam",
          "tel",
          "tgl",
          "tha",
          "tuk",
          "tur",
          "ukr",
          "urd",
          "uzb",
          "vie",
          "yid",
          "zul",
          "mul",
          "und"
        ],
        "description": "Detected Skill content language. Use an ISO code such as en, zh, or ja; mul selects mixed-language content and und selects undetermined content."
      }
    },
    "required": [
      "query"
    ]
  }
}