← seedba.se

INDIVIDUAL MCP TOOL

generate_test_data

Generate a fresh synthetic dataset for a project and return it as SQL INSERT statements.

seedba.senone authenticationAvailability not checked

Input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name or description contains a write-action term.

Parent endpoint

seedba.se

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.seedbase]
url = "https://seedba.se/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "seedbase": {
      "type": "http",
      "url": "https://seedba.se/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: seedbase
Remote MCP URL: https://seedba.se/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "seedbase": {
      "url": "https://seedba.se/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "seedbase": {
      "type": "http",
      "url": "https://seedba.se/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "seedbase",
  "transport": "streamable-http",
  "url": "https://seedba.se/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • list_projects — List your SeedBase projects (id, name, database type).
  • get_ddl — Get a project's schema as CREATE TABLE statements.
  • fetch_generation — Fetch a previously started generation by id: returns its status, and the SQL INSERT statements once completed.
  • create_project — Create a new, empty SeedBase project.
  • import_schema — Import a database schema into a project from pasted content: SQL DDL (CREATE TABLE …, raw pg_dump/mysqldump schema output works), SQL INSERT dumps, CSV/TSV, JSON, or ORM model code (Django, Prisma, SQLAlchemy, …).