We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bischoff99/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"jsonrpc": "2.0",
"method": "veeqo.batchCreateOrders",
"params": {
"orders": [
{
"deliver_to": {
"first_name": "John",
"last_name": "Doe",
"address1": "123 Main St",
"city": "Anytown",
"state": "CA",
"zip": "12345",
"country": "US"
},
"line_items_attributes": [
{
"product_id": "prod_123",
"quantity": 2
}
]
},
{
"deliver_to": {
"first_name": "Jane",
"last_name": "Smith",
"address1": "456 Oak Ave",
"city": "Another City",
"state": "NY",
"zip": "67890",
"country": "US"
},
"line_items_attributes": [
{
"product_id": "prod_456",
"quantity": 1
}
]
}
],
"idempotency_key": "batch-orders-123"
},
"id": 1
}