Skip to main content

List Releases

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READportal.list_releases
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: portal-agent-contract-v2-2026.07.12.1
  • Descriptor hash: 07f91a62be4c7c75ce192b59ba170800d79bb3e1aef9883fd8f08eaab7afee9b

List MAD MCP releases, affected services, and tools.

Request Body

{
"jsonrpc": "2.0",
"id": "portal-list-releases-example",
"method": "tools/call",
"params": {
"name": "portal.list_releases",
"arguments": {
"limit": 1,
"offset": 1,
"status": "published"
}
}
}

Arguments Schema

{
"type": "object",
"properties": {
"limit": {
"type": "integer",
"maximum": 100,
"minimum": 1,
"description": "Maximum releases to return."
},
"offset": {
"type": "integer",
"minimum": 0,
"description": "Zero-based release offset."
},
"status": {
"enum": [
"published",
"draft",
"all"
],
"type": "string",
"description": "Published, draft, or all releases."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"required": [
"ok",
"serviceId",
"toolName",
"traceId",
"summary",
"data",
"resource",
"pagination",
"nextAction",
"error"
],
"properties": {
"ok": {
"type": "boolean"
},
"data": {
"description": "Tool result."
},
"error": {
"type": [
"object",
"null"
]
},
"summary": {
"type": "string"
},
"traceId": {
"type": "string"
},
"resource": {
"type": [
"object",
"null"
]
},
"toolName": {
"type": "string"
},
"serviceId": {
"type": "string"
},
"nextAction": {
"type": [
"string",
"null"
]
},
"pagination": {
"type": [
"object",
"null"
]
}
},
"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": "portal-list-releases-example",
"method": "tools/call",
"params": {
"name": "portal.list_releases",
"arguments": {
"limit": 1,
"offset": 1,
"status": "published"
}
}
}'

Example Responses

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