# SeedBase Test Data (remote · seedba.se)

Generate realistic, FK-consistent synthetic test data for your databases from your AI assistant.

- Trust score: 80/100 (high trust)
- Change this week: +8
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `seedba.se`: 80/100 (this document), [markdown](https://verifymcp.io/servers/marcelglaeser-seedbase/seedba.md), [page](https://verifymcp.io/servers/marcelglaeser-seedbase/seedba)
- npm · `@seedbase/client`: 49/100, [markdown](https://verifymcp.io/servers/marcelglaeser-seedbase/seedbase-client.md), [page](https://verifymcp.io/servers/marcelglaeser-seedbase/seedbase-client)

## Channel facts

- Endpoint: `https://seedba.se/mcp`
- Transports: `streamable-http`
- Auth: `required`
- Version: `0.2.2`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 89/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation is enforced on tool calls, but the challenge carries no valid RFC 9728 metadata, so a client cannot discover where to get a token.
  - HTTPS is enforced; there's no plaintext access path.
  - The HSTS (Strict-Transport-Security) header is present.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 564 tokens (~94/item across 6 items; 6 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http marcelglaeser-seedbase https://seedba.se/mcp
```

### Codex

```toml
[mcp_servers.marcelglaeser-seedbase]
url = "https://seedba.se/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "marcelglaeser-seedbase": {
      "type": "remote",
      "url": "https://seedba.se/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add marcelglaeser-seedbase --url https://seedba.se/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  marcelglaeser-seedbase:
    url: "https://seedba.se/mcp"
```

### Other

```json
{
  "mcpServers": {
    "marcelglaeser-seedbase": {
      "type": "http",
      "url": "https://seedba.se/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 80, +1)

No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-31 (score 79, +5)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-29 (score 74, +1)

No change was recorded against any check on this day. Stability & Change Management went from 7 to 10. That category is still filling its 30-day observation window: 2 days of observed history at the previous scan, 3 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-28 (score 73, +1)

No change was recorded against any check on this day. Stability & Change Management went from 3 to 7. That category is still filling its 30-day observation window: 1 days of observed history at the previous scan, 2 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-27 (score 72, 0)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 72)

First indexed and scored.

## MCP tools (6)

### `list_projects` (~32 tokens)

List projects

List your SeedBase projects (id, name, database type). Use this first to find the project to work with.

Output parameters:

- `projects` (array)

### `get_ddl` (~76 tokens)

Get schema DDL

Get a project's schema as CREATE TABLE statements. Accepts a project id or name and an optional SQL dialect (postgresql, mysql, sqlite, mssql).

Input parameters:

- `dialect` (string): SQL dialect for the DDL (default: the project's database type)
- `project` (string, required): Project id (UUID) or project name

Output parameters:

- `ddl` (string)
- `dialect` (string)

### `generate_test_data` (~83 tokens)

Generate test data

Generate a fresh synthetic dataset for a project and return it as SQL INSERT statements. Optionally set rows per table. The data is foreign-key consistent.

Input parameters:

- `project` (string, required): Project id (UUID) or project name
- `rows` (integer): Rows per table (optional; plan limits apply)
- `seed` (integer): Seed for deterministic output (optional)

Output parameters:

- `download_url` (string): Authenticated download endpoint for the complete SQL (send your API key as 'Authorization: Bearer …').
- `generation_id` (string)
- `sql` (string): Complete SQL INSERTs. Absent when the result is too large — download it from download_url instead; no partial SQL is ever returned.
- `sql_chars` (integer)
- `status` (string)
- `truncated` (boolean): True when the SQL was too large to inline. The response then contains NO sql; fetch the complete file from download_url.

### `fetch_generation` (~60 tokens)

Fetch generation result

Fetch a previously started generation by id: returns its status, and the SQL INSERT statements once completed. Use this when generate_test_data reported the generation as still running.

Input parameters:

- `generation_id` (string, required): The generation id (UUID) reported by generate_test_data

Output parameters:

- `download_url` (string): Authenticated download endpoint for the complete SQL (send your API key as 'Authorization: Bearer …').
- `generation_id` (string)
- `sql` (string): Complete SQL INSERTs. Absent when the result is too large — download it from download_url instead; no partial SQL is ever returned.
- `sql_chars` (integer)
- `status` (string)
- `truncated` (boolean): True when the SQL was too large to inline. The response then contains NO sql; fetch the complete file from download_url.

### `create_project` (~51 tokens)

Create project

Create a new, empty SeedBase project. Use import_schema afterwards to add the schema.

Input parameters:

- `db_type` (string): Target database type (default: postgresql)
- `name` (string, required): Project name

Output parameters:

- `db_type` (string)
- `id` (string)
- `name` (string)

### `import_schema` (~142 tokens)

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, …). Replaces the project's current schema.

Input parameters:

- `content` (string, required): The schema source text (e.g. the DDL)
- `format` (string): Optional hint: sql, csv, tsv, json, or an ORM name (django, prisma, sqlalchemy, …). Auto-detected when omitted.
- `project` (string, required): Project id (UUID) or project name

Output parameters:

- `fk_count` (integer)
- `table_count` (integer)
- `tables` (array)
- `warnings` (array)

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/marcelglaeser-seedbase/seedba#diagnostics

## Score history

- 2026-08-03: 80
- 2026-08-02: 79
- 2026-08-01: 79
- 2026-07-31: 79
- 2026-07-30: 74
- 2026-07-29: 74
- 2026-07-28: 73
- 2026-07-27: 72
- 2026-07-26: 72

## Links

- Remote endpoint: https://seedba.se/mcp
- Authorisation metadata: https://seedba.se/.well-known/oauth-protected-resource/mcp
- Repository: https://github.com/marcelglaeser/seedbase-node
- Website: https://seedba.se/
- Changelog RSS feed: https://verifymcp.io/servers/marcelglaeser-seedbase/seedba/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/marcelglaeser-seedbase/seedba/changelog.json
- HTML version of this page: https://verifymcp.io/servers/marcelglaeser-seedbase/seedba
