Distilla

Take it with youStep 7 of 8

Connect a script

POST /tools/{name} with your API Key. The body matches what you just ran.

POST /tools/{name} with Authorization Bearer $API_KEY. The JSON body matches Distilla MCP.

curl -s -X POST https://staging-agent2-mcp-shim-658691628705.us-central1.run.app/tools/query_entity \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"entity":"company","select":["id","name","symbol"],"filters":[{"field":"symbol","op":"IN","value":["NVDA","AAPL"]}],"limit":5}'
  • Create an API Key for scripts. Do not send an oat_ token.
  • Send the JSON object as the body. Do not wrap it in arguments.
  • MCP-only names return 404 after a valid API Key.
200Tool JSON object400Unknown entity, missing job, or bad type401Missing or invalid API Key404Name is not an HTTP tool422Bad JSON, extra key, missing field, or wrong type
Try a callOpen API Pane