Relational DB Seeder MCP Server
Provides tools for inspecting schemas, seeding relational data, and executing queries on PostgreSQL databases, with automatic foreign key resolution.
Provides tools for inspecting schemas, seeding relational data, and executing queries on SQLite databases, with automatic foreign key resolution.
Click on "Install 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., "@Relational DB Seeder MCP Serverseed the database with sample departments and employees"
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.
Relational DB Seeder MCP Server
An intelligent, schema-aware, fully asynchronous Model Context Protocol (MCP) server that enables LLMs (like Claude) to inspect database structures and seed relational databases with custom, semantic data while preserving foreign key integrity in a single payload.
This is a developer tool designed to bridge the gap between AI reasoning and database populating. Instead of requiring the LLM to make multiple slow, sequential tool calls to resolve auto-generated IDs, the server parses constraints, sorts tables topologically, and maps generated IDs to foreign keys automatically.
๐ Key Features
Multi-Database Support: Out-of-the-box support for both SQLite (local files) and PostgreSQL databases, configured on startup via environment variables.
Automatic Relative Path Resolution: Any relative SQLite path (e.g.
sqlite:///employee.db) is automatically resolved relative to the server's project root directory, keeping database files in a predictable location regardless of where the client runs.Relational Graph Insertion: Seeds complex tables with relationships in one batch. LLMs can reference parent rows using labels like
ref:users:alice_tempand the engine automatically resolves them to real database-generated primary keys.Fully Asynchronous: High-performance database operations powered by
aiosqliteand the modernpsycopg(v3) async library.Schema Auto-Discovery: Queries database catalogs (
information_schemaand SQLite pragma lists) to dump tables, columns, constraints, and relationships for the LLM to reason about.Credential Masking: Built-in security that automatically hides database passwords and user credentials in server logs and returned status states.
Related MCP server: GraphJin
๐ ๏ธ Architecture
db_seeder/
โโโ adapters/
โ โโโ __init__.py
โ โโโ base.py # Base connection interface using abc.ABC
โ โโโ sqlite.py # SQLite async adapter using aiosqlite
โ โโโ postgres.py # PostgreSQL async adapter using psycopg
โโโ core/
โ โโโ __init__.py
โ โโโ graph.py # Topological sort & cycle detector
โ โโโ seeder.py # Relational graph insertion engine
โโโ tests/ # Unit & integration tests๐ฆ Installation & Setup
Ensure you have uv or standard Python 3.14+ installed.
1. Clone & Install Dependencies
git clone https://github.com/yourusername/DB_Seeder.git
cd DB_Seeder
uv sync2. Run the MCP Server Locally
You can run the server in development mode using fastmcp:
uv run fastmcp dev server.py3. Add to Claude Desktop Configuration
To connect this server to your Claude Desktop application, edit your claude_desktop_config.json:
MacOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
Add the server connection (defining the DATABASE_URL for your target SQLite or Postgres database):
{
"mcpServers": {
"db-seeder": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/DB_Seeder",
"run",
"server.py"
],
"env": {
"DATABASE_URL": "sqlite:///employee.db"
}
}
}
}๐ง Expose Tools
The server registers the following asynchronous MCP tools with the client:
Tool | Parameters | When to Use | Description |
| None | At the start of a session or when checking DB configuration. | Returns active database type, table list, and connection details (credentials masked). |
| None | Before writing queries or generating mock data payloads. | Dumps all columns, types, nullability, primary keys, and foreign keys. |
|
| Preferred tool for inserting records and database seeding. | Inserts a relational dataset, mapping and resolving parent keys. |
|
| For SELECT checks, DDL schemas (CREATE, ALTER), or updates. | Runs arbitrary SQL statements on the connected database. |
๐ Relational Graph Seeding Example
When seeding, the LLM agent sends a payload where parent tables have a __temp_id and child tables refer to them using the format ref:parent_table:temp_id.
Payload sent by LLM:
{
"departments": [
{
"__temp_id": "d1",
"dept_name": "Engineering"
},
{
"__temp_id": "d2",
"dept_name": "Sales"
}
],
"employees": [
{
"name": "Alice Smith",
"email": "alice@company.com",
"number": "555-1234",
"salary": 85000,
"dept_id": "ref:departments:d1"
},
{
"name": "Bob Johnson",
"email": "bob@company.com",
"number": "555-5678",
"salary": 72000,
"dept_id": "ref:departments:d2"
}
]
}Seeder Execution Steps:
Detects that
employeesdepends ondepartmentsvia the foreign key constraint ondept_id.Sorts the insertion order:
departmentsfirst, thenemployees.Inserts departments, capturing their database-generated primary keys (e.g.
Engineering -> 1,Sales -> 2).Replaces
"ref:departments:d1"with1and"ref:departments:d2"with2in the employees payload.Inserts employees, guaranteeing that no foreign key constraint violations occur.
๐งช Testing
The project has robust unit and integration tests written using pytest and pytest-asyncio. Run them with:
PYTHONPATH=. uv run pytestMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceEnables LLM agents to perform complete database operations on SQLite databases, including creating tables, executing queries, and managing data through CRUD operations with schema inspection capabilities.463MIT
- Alicense-qualityAmaintenanceEnables AI assistants to query databases using natural language, with automatic schema discovery and SQL compilation.1,1183,138Apache 2.0
- Alicense-qualityDmaintenanceEnables AI assistants to connect to and interact with PostgreSQL, MySQL, SQLite, and MongoDB databases through natural language, supporting schema exploration, query execution, data export, and more.MIT
- Flicense-qualityBmaintenanceEnables AI tools to understand a database, inspect schema, and run safe SELECT queries with SQL guardrails, plus optional codebase reading.
Related MCP Connectors
Generate realistic, FK-consistent synthetic test data for your databases from your AI assistant.
Query PostgreSQL databases in plain English โ LLM-generated, safety-validated SQL.
Generate realistic relational test data โ 156 field types, 22 locales, JSON/CSV/SQL, free previews.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/NamanT98/DB-Seeder'
If you have feedback or need assistance with the MCP directory API, please join our Discord server