Seedweaver MCP Server

Schema-aware relational test data generator with working foreign keys, for any MCP client.

Local serverstdio

What is the Seedweaver MCP server?

Seedweaver MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. Schema-aware relational test data generator with working foreign keys, for any MCP client.

What you get

Paste your CREATE TABLE SQL (or a JSON schema) and SeedWeaver generates seed data where foreign keys actually resolve to real primary keys, unique constraints are respected, and values are realistic (names, emails, dates, decimals). Unlike generic mock-data tools that spit out statistically random junk, SeedWeaver understands the relationships in your schema.

  • Resolves foreign keys — — referenced tables are generated first (topological ordering), and FK columns point at real generated keys
  • Respects constraints — — unique columns stay unique, primary keys are unique, NOT NULL is honored
  • Reads your real schema — — paste Postgres/MySQL CREATE TABLE DDL directly, no manual config
  • Realistic values — — names, emails, addresses, companies, dates, decimals, enums
  • Outputs what you need — — SQL INSERT statements, JSON, or CSV

What the assistant can call

Once Seedweaver is connected, these are the calls the assistant has available:

  • analyze_schema — Parse a schema (SQL DDL or JSON) and report tables, columns, relationships, and generation order. Run this first to confirm SeedWeaver reads your
  • generate_seed_data — Generate coherent test data. Returns SQL INSERTs (default), JSON, or CSV

Configuration and credentials

You will need one environment variable: SEEDWEAVER_LICENSE. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Setting it up

Installation goes through your MCP client rather than a global install: point it at seedweaver-mcp on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Choosing this one

This sits in the database access group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Seedweaver's toolset — analyze_schema, generate_seed_data — is a fair guide to whether it matches your workflow. It is maintained by FixtureForge; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Seedweaver's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the seedweaver mcp server does with a few real requests.

Available tools

ToolWhat it does
analyze_schemaParse a schema (SQL DDL or JSON) and report tables, columns, relationships, and generation order. Run this first to confirm SeedWeaver reads your schema correctly.
generate_seed_dataGenerate coherent test data. Returns SQL INSERTs (default), JSON, or CSV.

How to install the Seedweaver MCP server

{
  "mcpServers": {
    "seedweaver": {
      "command": "npx",
      "args": ["-y", "seedweaver-mcp"],
      "env": {
        "SEEDWEAVER_LICENSE": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
SEEDWEAVER_LICENSEConfiguration value read at startup.Optional

Example prompts to try

  • Use Seedweaver to analyze schema.
  • Use Seedweaver to generate seed data.

Frequently asked questions

It connects Seedweaver to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (analyze_schema, generate_seed_data) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Seedweaver directly.