Seedfast MCP Server
OfficialProvides tools for planning and executing seeding runs against a PostgreSQL database, generating realistic, relationally valid test data from its live schema.
Click on "Deploy 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., "@Seedfast MCP ServerCreate a seeding plan for my database based on its schema"
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.
Seedfast MCP Server
Seedfast fills a PostgreSQL database with realistic, relationally valid test data generated from its live schema, so a team that cannot put production data into development still gets an environment that behaves like production.
This repository is the public integration surface for its MCP server. You will find the client configuration, the tool reference and a smoke test here. The engine and the CLI themselves are closed-source and ship through npm and Homebrew.
Published in the official MCP registry as st.seedfa/seedfast.
Install
Nothing separate to install. The MCP server is built into the Seedfast CLI and runs straight from npx:
{
"mcpServers": {
"seedfast": {
"command": "npx",
"args": ["-y", "seedfast@latest", "mcp"],
"env": {
"SEEDFAST_API_KEY": "sfk_live_your_api_key_here"
}
}
}
}That block goes into claude_desktop_config.json for Claude Desktop, .cursor/mcp.json for Cursor, or the equivalent file for VS Code and Claude Code. Client-by-client paths are in the MCP setup guide.
Prefer a local binary? Install the CLI and point command at seedfast with args: ["mcp"] instead:
brew install seedfast-ai/tap/seedfast # macOS, Linux
npm install -g seedfast # any platform with Node.jsRelated MCP server: mcp-backend
Configuration
Variable | Required | What it does |
| yes | API key created in the Seedfast dashboard |
| no | Path to a SQLite file. Without it, runs and plans live in memory and disappear when the server exits |
Tools
Thirteen tools cover the whole loop of planning a seed, running it and inspecting what happened.
Tool | What it does |
| Checks CLI health and whether authentication is configured |
| Tests a database connection before anything is written |
| Reads the live schema of the target database |
| Builds a seeding plan from a scope description |
| Executes a seeding run |
| Polls a run in progress |
| Aborts a run |
| Answers a question the run raised while it was waiting for input |
| Lists saved plans |
| Reads one saved plan |
| Saves a new plan |
| Edits a saved plan |
| Removes a saved plan |
Resources
URI | Media type | Contents |
|
| Summary of a seeding run |
|
| Event log of a seeding run |
|
| The question a run is waiting on, while it is in |
|
| Details of a saved plan |
Prompts
Two prompts ship with the server: seed-production-db, which takes a scope and a description of the target database, and scope-examples, which turns a use case into example scopes.
Verify
The smoke test starts the published package over stdio, completes an MCP handshake and lists the tools. It needs no API key, since it never reaches the backend:
node scripts/smoke-test.mjsExpected output ends with the protocol version the server negotiated and the number of tools it advertises.
Databases
Seedfast works with PostgreSQL today. Going PostgreSQL-first was deliberate, since its constraint and relationship system is the richest one out there and that is exactly where generating believable data gets hard. Support for MySQL, Oracle and SQLite is in development.
Links
Questions and bug reports: support@seedfa.st
License
MIT for the contents of this repository. The Seedfast CLI is distributed under the same license; its engine runs as a hosted service.
This server cannot be deployed
Maintenance
Related MCP Connectors
Hosted MCP server for PostgreSQL diagnostics: slow queries, missing indexes, connection pressure.
- SupabaseOAuthcom.supabase
MCP server for interacting with the Supabase platform
Hosted MCP server for AI-driven data ops. Create apps, manage schemas, and CRUD structured data.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAn open-source MCP server for PostgreSQL schema introspection and guarded read-only queries. It enables MCP clients to discover schemas, tables, columns, indexes, relationships, and safe queryable data from a configured PostgreSQL database.6 npmMIT
- AlicenseBqualityCmaintenanceMCP server providing backend access to PostgreSQL, Storage (Supabase/S3), Iceberg data lake, and SQL seeds. It offers 32 tools for database queries, storage operations, seed management, and more.313MIT
- AlicenseAqualityCmaintenanceFull-featured MCP server that exposes 36 tools for interacting with PostgreSQL databases, covering schema introspection, query execution, data exploration, performance monitoring, security auditing, and maintenance.367 npmMIT
- AlicenseAqualityCmaintenanceRead-only PostgreSQL database MCP server for safely exploring schema, tables, relationships, and sample data without modification.1047 npmMIT