Skip to main content

Sc Category Tools

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READscrape-creators.sc_category_tools
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: scrape-creators-2026.07.12.1
  • Descriptor hash: 87688ccfed314e20eebde3fd51fe1a20bcd2147ff19d6dad48179c66cae4440f

Use this after choosing a top-level category or subcategory. Returns matching provider/helper tools and tells agents whether to call them directly or through sc_call_provider_tool.

Request Body

{
"jsonrpc": "2.0",
"id": "scrape-creators-sc-category-tools-example",
"method": "tools/call",
"params": {
"name": "scrape-creators.sc_category_tools",
"arguments": {
"limit": 1,
"offset": 1,
"search": "",
"category": "",
"top_level_category": ""
}
}
}

Arguments Schema

{
"type": "object",
"properties": {
"limit": {
"type": "integer",
"title": "Limit",
"default": 50,
"description": "Maximum matching tools to return."
},
"offset": {
"type": "integer",
"title": "Offset",
"default": 0,
"description": "Zero-based offset for paginating matching tools."
},
"search": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Search",
"default": null,
"description": "Optional case-insensitive search across tool name, title, description, and category."
},
"category": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Category",
"default": null,
"description": "Optional exact subcategory name such as Instagram, TikTok, Generic Lead Discovery, or Diagnostics."
},
"top_level_category": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Top Level Category",
"default": null,
"description": "Optional top-level category such as Social & Creator Platforms, Ads & Competitive Intelligence, or Lead Discovery & Workflows."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"required": [
"ok",
"data",
"error",
"meta"
],
"properties": {
"ok": {
"type": "boolean",
"description": "Whether the local or provider operation completed successfully."
},
"data": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "array",
"items": {}
},
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"type": "null"
}
],
"description": "Bounded operation result when ok is true."
},
"meta": {
"type": "object",
"description": "Safe request, pagination, cache, and timing metadata.",
"additionalProperties": true
},
"error": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"description": "Safe structured error when ok is false."
}
},
"description": "Scrape Creators MCP normalized response envelope.",
"additionalProperties": false
}

Code Examples

curl -X POST 'https://portal.madpanda3d.com/api/mcp' \
-H 'Authorization: Bearer mad_live_***' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": "scrape-creators-sc-category-tools-example",
"method": "tools/call",
"params": {
"name": "scrape-creators.sc_category_tools",
"arguments": {
"limit": 1,
"offset": 1,
"search": "",
"category": "",
"top_level_category": ""
}
}
}'

Example Responses

{
"ok": true,
"message": "Tool scrape-creators.sc_category_tools executed successfully.",
"note": "Response shape varies by MCP tool. Inspect live responses for exact fields."
}