Skip to main content

List Tickets

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READportal.list_tickets
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: portal-agent-contract-v2-2026.07.12.1
  • Descriptor hash: b0e69ef80efa8c7cbd0bba6a716de67a12d4f2a3cd1d87b10c42454cfacd0684

List visible support tickets with filters and pagination.

Request Body

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

Arguments Schema

{
"type": "object",
"properties": {
"limit": {
"type": "integer",
"maximum": 200,
"minimum": 1,
"description": "Maximum tickets to return."
},
"offset": {
"type": "integer",
"minimum": 0,
"description": "Zero-based ticket offset."
},
"status": {
"type": "string",
"description": "Optional ticket status filter."
}
},
"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-tickets-example",
"method": "tools/call",
"params": {
"name": "portal.list_tickets",
"arguments": {
"limit": 1,
"offset": 1,
"status": "status_example"
}
}
}'

Example Responses

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