Skip to main content

Sc Call Provider Tool

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READscrape-creators.sc_call_provider_tool
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: scrape-creators-2026.07.12.1
  • Descriptor hash: 08ae406e24863212db18784c78c940bdadd8453c69993197bfbc69718e4c8886

Use this to invoke a native ScrapeCreators provider endpoint returned by sc_category_tools when the MCP is running in category surface mode.

Request Body

{
"jsonrpc": "2.0",
"id": "scrape-creators-sc-call-provider-tool-example",
"method": "tools/call",
"params": {
"name": "scrape-creators.sc_call_provider_tool",
"arguments": {
"tool_name": "tool_name_example",
"arguments": ""
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"tool_name"
],
"properties": {
"arguments": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"title": "Arguments",
"default": null,
"description": "Arguments for the native provider tool. Top-level query params are accepted, as are params, path_params, body, compact, max_items, include_raw, cache_ttl_seconds, and confirm_high_cost."
},
"tool_name": {
"type": "string",
"title": "Tool Name",
"description": "Native ScrapeCreators provider tool name returned by sc_category_tools."
}
},
"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-call-provider-tool-example",
"method": "tools/call",
"params": {
"name": "scrape-creators.sc_call_provider_tool",
"arguments": {
"tool_name": "tool_name_example",
"arguments": ""
}
}
}'

Example Responses

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