Skip to main content

Bulk-enrich Apollo organizations

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

WRITEapollo.apollo_leads_organization_enrich_batch
  • Contract tier: agent_ready
  • Risk: write
  • Catalog version: 1.0.2
  • Descriptor hash: 354f0b48c28a6cefa18fb6cf5a541afd7db94815ed24f40f66328f287953e1c8

Use this workflow helper to bulk-enrich organizations through Apollo. Apollo classifies this POST endpoint as write-intent in the current MCP safety model, so confirm=true is required. Returns normalized enrichment results and safe metadata. Requires Portal grant and Apollo credentials.

Request Body

{
"jsonrpc": "2.0",
"id": "apollo-apollo-leads-organization-enrich-batch-example",
"method": "tools/call",
"params": {
"name": "apollo.apollo_leads_organization_enrich_batch",
"arguments": {
"params": "",
"confirm": false
}
}
}

Arguments Schema

{
"type": "object",
"properties": {
"params": {
"anyOf": [
{
"type": "object",
"description": "Apollo endpoint parameters.",
"additionalProperties": true
},
{
"type": "null"
}
],
"default": null,
"description": "Apollo endpoint parameters."
},
"confirm": {
"type": "boolean",
"default": false,
"description": "Must be true before Apollo provider execution."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"required": [
"ok",
"data",
"error",
"meta"
],
"properties": {
"ok": {
"type": "boolean",
"description": "Whether the requested operation completed successfully."
},
"data": {
"anyOf": [
{
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "array",
"items": {}
},
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
}
],
"description": "Normalized provider or navigation result."
},
{
"type": "null"
}
],
"default": null,
"description": "Normalized provider or navigation result."
},
"meta": {
"type": "object",
"description": "Safe request, pagination, and truncation metadata.",
"additionalProperties": true
},
"error": {
"anyOf": [
{
"type": "object",
"description": "Safe error details when ok is false.",
"additionalProperties": true
},
{
"type": "null"
}
],
"default": null,
"description": "Safe error details when ok is false."
}
},
"description": "Apollo 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": "apollo-apollo-leads-organization-enrich-batch-example",
"method": "tools/call",
"params": {
"name": "apollo.apollo_leads_organization_enrich_batch",
"arguments": {
"params": "",
"confirm": false
}
}
}'

Example Responses

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