Datadog
generate_seed_data
Generate realistic, schema-aware INSERT statements for development and testing. Respects types, constraints, and FK relationships. Never executes. [BUILD tier]
Remote thinair/data
Other tools also called generate_seed_data?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"table": {
"type": "string",
"description": "Table to generate seed data for"
},
"format": {
"enum": [
"sql",
"csv"
],
"type": "string",
"description": "Output format (default sql)"
},
"row_count": {
"type": "number",
"description": "Number of rows (default 100, max 1000)"
},
"connection": {
"type": "string",
"description": "Target connection name from this tenant's inventory. Call `list_connections` to see every name + dialect, then match semantically to the user's intent (e.g. 'analytics' → a connection named `*-analytics-*`; 'prod' → a connection with `prod-` prefix). If the user didn't specify, use the tenant's default (first added). Do not invent names — resolve from `list_connections` output."
}
}
}