flow-agent-mcp
Enables creating and managing Snowflake materializations within Estuary Flow pipelines, allowing collections to be written to Snowflake tables.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@flow-agent-mcpCheck the health of the weather pipeline"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
flow-agent-mcp
An MCP server that exposes Estuary Flow pipeline operations as typed tools, plus
three runnable demo pipelines built on public datasets. It wraps Estuary's
flowctl CLI so an agent can drive Flow directly.
What it does
Each tool wraps a real flowctl command with typed, validated inputs and
returns structured JSON. An agent (or a person through Claude Code) can inspect
a pipeline's health, publish captures and materializations, edit and restart
tasks, and read landed documents, all through tool calls rather than hand-typed
CLI commands.
Related MCP server: GlassFlow MCP Server
Tools
Every tool maps to a real flowctl invocation, echoed back in the response as
command so the underlying call is always visible.
Tool | Wraps |
|
|
|
|
|
|
|
|
| status + stats + error logs in one call |
|
|
|
|
|
|
|
|
| pull specs → toggle |
| the disable/verify/enable sequence |
|
|
| demo record generator (no flowctl) |
Notes on behavior worth knowing:
set_task_enabledhandles the spec surgery. It pulls the live spec, togglesshards.disablecleanly, and republishes, so enable/disable is one call rather than a manual edit-and-publish loop.Failures return flowctl's own message as a structured MCP error result instead of throwing, so the calling agent gets actionable text.
flowctlpublishes from files, not inline specs, so specs are written to a scratch directory and cleaned up after.
Setup
npm install
npm test # 127 checks, no flowctl or Estuary account neededAdd to Claude Code:
claude mcp add estuary-action -- npx tsx /path/to/estuary-mcp/src/index.tsReal operations need flowctl on PATH and flowctl auth login. Set
ESTUARY_DRY_RUN=true to echo commands without executing them, or
FLOWCTL_PATH to point at a specific binary.
Demo pipelines
Each demo builds a complete catalog — capture, collections, derivation, materialization — from a public dataset shape.
Demo | Dataset | Exercises |
| HTTP ingest, filter derivation, BigQuery fan-out | |
| Open-Meteo (live, no API key) | polling an open API, threshold alerts, Postgres |
| Postgres CDC, aggregation with reduce annotations, Snowflake |
Generate a catalog and publish it:
npm run catalog -- gpu acmeCo/gpu > flow.yaml
flowctl catalog publish --source flow.yaml --auto-approveGenerate data to feed a pipeline:
npm run demo:gpu -- 500 # NDJSON to POST at the ingest endpoint
npm run demo:weather # live Open-Meteo readings
npm run demo:weather -- --watch 300 # poll every 5 minutes
npm run demo:property -- 1000 --sql # INSERTs for the CDC source table
npm run demo:property -- --ddl # table + replication slot + publicationThe weather demo pushes directly to Estuary when WEATHER_INGEST_URL and
WEATHER_INGEST_TOKEN are set. The ingest URL is only shown in the dashboard
after publishing, under the capture's Endpoints section.
Aggregation correctness
The property rollup sums sales per market. Aggregating derivations emit one
delta document per source row and rely on schema reduce: annotations to fold
deltas that share a key. The top-level reduce: { strategy: merge } combines
matching deltas and is set alongside the per-field strategies. aggregateSchema()
in src/specs.ts applies both levels, and test/catalog.test.mts asserts they
are present.
Layout
src/
index.ts MCP server and tool definitions
flowctl.ts subprocess wrapper, NDJSON parsing, scratch spec files
specs.ts catalog spec builders (captures, derivations, reductions)
shards.ts shards.disable spec surgery
yaml.ts literal-block YAML so SQL lambdas survive serialization
demos/ three end-to-end pipelines
synthetic/ record generators
test/
shards.test.mts disable/enable spec editing
catalog.test.mts spec shape, key/schema/reduce invariants
mcp-client.test.mts real MCP transport, command construction, validationStatus
Tested (offline, 127 checks): tool registration and schema validation over a
real MCP client connection, exact flowctl command construction for every tool,
shard spec editing, output parsing, and catalog invariants across all three
demos.
Verified against a live Estuary tenant. A full source-to-destination pipeline was published and run end to end:
an HTTP-ingest capture landing documents into a collection,
a SQLite derivation filtering those readings into threshold-based alerts,
schema inference widening a field's bounds and republishing the task on its own,
a Postgres materialization writing both collections into an external database, confirmed by querying that database directly (8 readings, 3 alerts).
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA production-grade MCP server designed for multi-tenant, authenticated, and observable AI agent systems, enabling secure tool execution across heterogeneous data sources.Last updated54MIT

GlassFlow MCP Serverofficial
Alicense-qualityBmaintenanceModel Context Protocol server for managing and diagnosing GlassFlow streaming pipelines, exposing pipeline CRUD, metrics queries, log search, and a composite diagnostic tool as MCP tools that AI agents can call over SSE transport.Last updatedApache 2.0- Alicense-qualityDmaintenanceMCP Server for interacting with the Langflow API via a natural language interface. It exposes Langflow functionalities as tools for LLMs.Last updatedMIT
- Alicense-qualityBmaintenanceAn MCP server that exposes Azure Data Factory operations as tools any LLM can call — trigger pipelines, monitor runs, inspect datasets, and get factory health summaries through natural language.Last updatedMIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for interacting with the Supabase platform
MCP server exposing the Backtest360 engine API as tools for AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/awictor/flow-agent-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server