Input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent endpoint
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
get_ddl— Get a project's schema as CREATE TABLE statements.generate_test_data— Generate a fresh synthetic dataset for a project and return it as SQL INSERT 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, …).