This release adds 3 notable features for engineering teams evaluating rollout.
✓ No known CVEs patched in this version
Topics
+2 more
Summary
AI summaryIntroduces parallel batch_execute and composable run_workflow pipelines with compact JSON responses by default.
Full changelog
Introduces CodeAct-inspired composable tools and makes compact responses the default. Inspired by Apple's CodeAct research and Cloudflare Code Mode.
What's New
batch_execute — parallel operations in one call
Run up to 20 read operations simultaneously. Ideal for fetching multiple dashboards, cards, or schemas in a single round trip.
{
"operations": [
{ "tool": "get_dashboard", "args": { "dashboard_id": 1 } },
{ "tool": "get_dashboard", "args": { "dashboard_id": 2 } },
{ "tool": "execute_card", "args": { "card_id": 5 } }
]
}
run_workflow — composable multi-step pipelines
Chain tools sequentially with $stepName.path references to pipe outputs between steps. Eliminates multi-turn chatter for common data exploration flows.
{
"steps": [
{ "name": "find", "tool": "search_content", "args": { "query": "revenue" } },
{ "name": "details", "tool": "get_card", "args": { "card_id": "$find.results[0].id" } },
{ "name": "data", "tool": "execute_card", "args": { "card_id": "$find.results[0].id" } }
]
}
Default compact responses
All tools now return compact JSON by default (~50% token reduction). Use format: "default" to opt into pretty-printed output.
What's Changed
batch_executetool — parallel execution of multiple read operations (#40)run_workflowtool — composable pipelines with output chaining and per-step error handling (#40)- Compact responses by default — all 30 tools now use compact JSON (#40)
- 30 total tools (up from 28)
Install
One-click
Download metabase-mcp-1.3.0.mcpb below, double-click in Claude Desktop.
npm
npx @ai-1luvc0d3/[email protected]
Full Changelog: https://github.com/1luvc0d3/metabase-mcp/compare/v1.2.0...v1.3.0
Weekly OSS security release digest.
The CVE patches and breaking changes that affected production tools this week. One email, every Sunday.
No spam, unsubscribe anytime.
Share this release
About 1luvc0d3/metabase-mcp
MCP server connecting Claude to Metabase with 28 tools for natural language data analysis, dashboard management, SQL queries, and automated insights. Features SQL guardrails, rate limiting, and audit logging.
Related context
Beta — feedback welcome: [email protected]