massive_run_pipeline
Search for an API endpoint, fetch data, store it, run SQL queries, and apply technical indicators or Greeks in a single call.
Instructions
Composable pipeline: search→fetch→store→query→apply in 1 call (saves 4 round-trips). Describe what data you want, optionally filter with SQL and apply Greeks/technicals.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sql | No | SQL to run after storing. Use {table} as placeholder for the table name | |
| apply | No | Post-processing: [{"function": "sharpe_ratio", "inputs": {"column": "close", "window": 252}, "output": "sharpe"}] | |
| params | No | Query parameters for the API call | |
| store_as | No | Table name (auto-generated if omitted) | |
| search_query | Yes | Natural language query to find the right API endpoint | |
| path_override | No | Skip search — use this API path directly |