Bulk Create Accounts
Immutable Catalog + Curated Guide
This lossless descriptor comes from the active Portal catalog and is enhanced with reviewed examples.
- Contract tier:
agent_ready - Risk:
write - Catalog version:
1.0.2 - Descriptor hash:
d44d631fa40c15105dbeddbecf1e22e8c6c3ebc3a7d5a07d1574ec1c69595ea3
Bulk Create Accounts (POST /accounts/bulk_create). Notes: bulk_limit_100_accounts.
Request Body
{
"jsonrpc": "2.0",
"id": "apollo-apollo-post-accounts-bulk-create-example",
"method": "tools/call",
"params": {
"name": "apollo.apollo_post_accounts_bulk_create",
"arguments": {
"body": {
"example": true
},
"confirm": true
}
}
}
Arguments Schema
{
"type": "object",
"properties": {
"body": {
"anyOf": [
{
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "array",
"items": {}
}
],
"description": "Apollo JSON request body accepted by the documented endpoint."
},
{
"type": "null"
}
],
"default": null,
"description": "Apollo JSON request body accepted by the documented endpoint."
},
"params": {
"anyOf": [
{
"type": "object",
"description": "Apollo query-string parameters accepted by the documented endpoint.",
"additionalProperties": true
},
{
"type": "null"
}
],
"default": null,
"description": "Apollo query-string parameters accepted by the documented endpoint."
},
"compact": {
"anyOf": [
{
"type": "boolean",
"description": "Override the server default for token-efficient list truncation."
},
{
"type": "null"
}
],
"default": null,
"description": "Override the server default for token-efficient list truncation."
},
"confirm": {
"type": "boolean",
"default": false,
"description": "Must be true for endpoints classified as write-intent."
},
"max_items": {
"anyOf": [
{
"type": "integer",
"minimum": 1,
"description": "Maximum list items returned when compact mode is enabled."
},
{
"type": "null"
}
],
"default": null,
"description": "Maximum list items returned when compact mode is enabled."
},
"include_raw": {
"type": "boolean",
"default": false,
"description": "Include the unnormalized Apollo response in addition to normalized data."
},
"path_params": {
"anyOf": [
{
"type": "object",
"description": "Values for every {placeholder} in the documented endpoint path. Keys must match placeholder names exactly.",
"additionalProperties": true
},
{
"type": "null"
}
],
"default": null,
"description": "Values for every {placeholder} in the documented endpoint path. Keys must match placeholder names exactly."
}
},
"description": "Shared input contract for a manifest-backed Apollo endpoint tool.",
"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
- Node.js
- Python
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-post-accounts-bulk-create-example",
"method": "tools/call",
"params": {
"name": "apollo.apollo_post_accounts_bulk_create",
"arguments": {
"body": {
"example": true
},
"confirm": true
}
}
}'
const response = await fetch('https://portal.madpanda3d.com/api/mcp', {
method: 'POST',
headers: {
Authorization: 'Bearer mad_live_***',
'Content-Type': 'application/json',
},
body: JSON.stringify({
"jsonrpc": "2.0",
"id": "apollo-apollo-post-accounts-bulk-create-example",
"method": "tools/call",
"params": {
"name": "apollo.apollo_post_accounts_bulk_create",
"arguments": {
"body": {
"example": true
},
"confirm": true
}
}
}),
});
const data = await response.json();
console.log(data);
import requests
url = 'https://portal.madpanda3d.com/api/mcp'
headers = {
'Authorization': 'Bearer mad_live_***',
'Content-Type': 'application/json',
}
payload = {
"jsonrpc": "2.0",
"id": "apollo-apollo-post-accounts-bulk-create-example",
"method": "tools/call",
"params": {
"name": "apollo.apollo_post_accounts_bulk_create",
"arguments": {
"body": {
"example": true
},
"confirm": true
}
}
}
response = requests.post(url, headers=headers, json=payload, timeout=60)
print(response.json())
Example Responses
- 200 Success
- 401 Invalid Apollo API Key
{
"ok": true,
"endpoint": "/accounts/bulk_create",
"method": "POST"
}
{
"ok": false,
"classification": "missing_required_credentials",
"message": "Apollo API key is missing or invalid."
}