Skip to main content

List Capabilities

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READscrape-creators.list_capabilities
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: scrape-creators-2026.07.12.1
  • Descriptor hash: 0e51880ed7f0df27bf00d225790e10275608ee48f439423c2272d69ae10f255f

Return the provider-owned Scrape Creators ToolManifest; request descriptors for complete schemas, annotations, aliases, and hashes.

Request Body

{
"jsonrpc": "2.0",
"id": "scrape-creators-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "scrape-creators.list_capabilities",
"arguments": {
"include_descriptors": false
}
}
}

Arguments Schema

{
"type": "object",
"properties": {
"include_descriptors": {
"type": "boolean",
"title": "Include Descriptors",
"default": false,
"description": "When true, returns every complete ToolManifest descriptor; false returns counts only."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"required": [
"schemaVersion",
"serviceId",
"catalogVersion",
"buildSha",
"descriptorHash",
"counts",
"tools"
],
"properties": {
"tools": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
},
"description": "Complete descriptors when requested, or an empty array for counts-only reads."
},
"counts": {
"type": "object",
"description": "Raw, agent-ready, legacy, and hidden descriptor counts.",
"additionalProperties": {
"type": "integer"
}
},
"buildSha": {
"type": "string",
"description": "Source revision used to build the running provider image."
},
"serviceId": {
"type": "string",
"description": "Canonical Portal registry service identifier."
},
"schemaVersion": {
"type": "string",
"description": "Version of the shared ToolManifest wire contract."
},
"catalogVersion": {
"type": "string",
"description": "Immutable provider catalog version identifier."
},
"descriptorHash": {
"type": "string",
"description": "SHA-256 digest of the canonical ordered descriptors."
}
},
"description": "Complete provider-owned Scrape Creators ToolManifest catalog.",
"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-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "scrape-creators.list_capabilities",
"arguments": {
"include_descriptors": false
}
}
}'

Example Responses

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