Skip to main content

Find Pipeline By Name All Tenants

Snapshot Catalog Entry

This page is generated from broker tools/list snapshot data.

GETghl.find_pipeline_by_name_all_tenants

Find pipelines by name across all tenants.

Request Body

{
"jsonrpc": "2.0",
"id": "ghl-find-pipeline-by-name-all-tenants-example",
"method": "tools/call",
"params": {
"name": "ghl.find_pipeline_by_name_all_tenants",
"arguments": {
"name": "name_example",
"matchMode": "contains",
"tenantIds": [],
"includeStages": false
}
}
}

Arguments Schema

{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"matchMode": {
"type": "string",
"enum": [
"contains",
"exact"
]
},
"tenantIds": {
"type": "array",
"items": {
"type": "string"
}
},
"includeStages": {
"type": "boolean"
}
},
"required": [
"name"
],
"additionalProperties": false
}

Code Examples

curl -X POST 'https://madpanda3d.com/lab/mad-mcps/portal/api/mcp' \
-H 'Authorization: Bearer mad_live_***' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": "ghl-find-pipeline-by-name-all-tenants-example",
"method": "tools/call",
"params": {
"name": "ghl.find_pipeline_by_name_all_tenants",
"arguments": {
"name": "name_example",
"matchMode": "contains",
"tenantIds": [],
"includeStages": false
}
}
}'

Example Responses

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