generate_seed_data
Generate realistic INSERT statements for development and testing that respect schema types, constraints, and foreign key relationships without executing.
Instructions
Generate realistic, schema-aware INSERT statements for development and testing. Respects types, constraints, and FK relationships. Never executes. [BUILD tier]
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- bin/server.js:125-130 (registration)Tool registration entry for 'generate_seed_data' in the static tool catalog array. This defines the tool's name, description, and input schema. This is the only occurrence of 'generate_seed_data' in the codebase.
{ name: "generate_seed_data", description: "Generate realistic, schema-aware INSERT statements for development and testing. Respects types, constraints, and FK relationships. Never executes. [BUILD tier]", inputSchema: { type: "object" }, }, - bin/server.js:190-193 (handler)The CallTool handler for ALL tools (including generate_seed_data) — this is a static adapter that returns a redirect message pointing to the production hosted MCP server at https://data.thinair.co/mcp. The actual execution logic lives on the hosted server, not in this local stdio adapter.
server.setRequestHandler(CallToolRequestSchema, async () => ({ content: [{ type: "text", text: REDIRECT_MESSAGE }], isError: false, }));