Sign in

Invoke MCP tool

documented

Sends an MCP tool request to the MCP server to perform an operation (tools listed in the MCP docs). The MCP server URL is https://mcp.databox.com/mcp and uses JSON-RPC over HTTP. ([developers.databox.com](https://developers.databox.com/docs/mcp/overview?utm_source=openai))

POST /mcpDatabox MCPno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://mcp.databox.com/mcp" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"jsonrpc":"2.0","method":"ingest_data","params":{"dataset_id":"{{$dataset_id}}","records": {{$records}}},"id":1}'
Invoke MCP tool · Databox · OpenIntegrations