Skip to main content
Glama

Server Details

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

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.2/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool serves a clear, distinct purpose. list_projects finds projects, get_ddl retrieves schemas, generate_test_data creates data, and fetch_generation retrieves results. No overlaps or ambiguities exist.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case: list_projects, get_ddl, generate_test_data, fetch_generation. The naming is predictable and clear across the set.

Tool Count5/5

Four tools cover the essential workflow for test data generation: project discovery, schema retrieval, data generation initiation, and result fetching. The count is well-scoped and appropriate for the domain.

Completeness5/5

The tool surface fully supports the test data generation workflow. It provides all necessary steps from project exploration to data retrieval, with no missing lifecycle operations. Users can successfully complete their task using only these tools.

Available Tools

4 tools
fetch_generationFetch generation resultA
Read-onlyIdempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
generation_idYesThe generation id (UUID) reported by generate_test_data

Output Schema

ParametersJSON Schema
NameRequiredDescription
sqlNo
statusYes
truncatedNo
generation_idYes
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Description adds context beyond annotations: specifies that it returns status and SQL INSERT statements, and that it fetches a previously started generation. No contradiction with annotations (readOnlyHint, idempotentHint, destructiveHint).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with core purpose, no wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity, extensive annotations, and presence of output schema, the description is complete. It covers what the tool returns and when to use it.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Only one parameter with 100% schema coverage; description does not add significant new meaning beyond schema, which already states 'The generation id (UUID) reported by generate_test_data'. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states the tool fetches a generation by ID, returns status and SQL INSERT statements, and distinguishes from sibling generate_test_data by indicating when to use it (when generation is still running).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit condition: 'Use this when generate_test_data reported the generation as still running.' Good guidance, but could also mention when not to use or alternatives for completed generations.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

generate_test_dataGenerate test dataAInspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
rowsNoRows per table (optional; plan limits apply)
seedNoSeed for deterministic output (optional)
projectYesProject id (UUID) or project name

Output Schema

ParametersJSON Schema
NameRequiredDescription
sqlNo
statusYes
truncatedNo
generation_idYes
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate non-destructive behavior; description adds that data is foreign-key consistent and returns SQL (no side effects). However, does not discuss input validation, error cases, or resource implications.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences, front-loaded with main action, optional details in the second. Zero wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With an output schema, return format is covered. Description mentions key feature (FK consistency). Could briefly address what happens if project is invalid, but sufficient for typical use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema covers all parameter descriptions (100% coverage). Description lightly reinforces the rows parameter and data consistency, but adds little beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states the tool generates a fresh synthetic dataset for a project and returns SQL INSERT statements, with foreign-key consistency. Distinguishes from sibling tools like fetch_generation and get_ddl.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Implicitly indicates when to use (generate new data) but lacks explicit guidance on when not to use or how it compares to siblings (e.g., fetch_generation for existing data).

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_ddlGet schema DDLA
Read-onlyIdempotent
Inspect

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

ParametersJSON Schema
NameRequiredDescriptionDefault
dialectNoSQL dialect for the DDL (default: the project's database type)
projectYesProject id (UUID) or project name

Output Schema

ParametersJSON Schema
NameRequiredDescription
ddlYes
dialectYes
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already provide readOnlyHint=true, idempotentHint=true, destructiveHint=false, indicating a safe, non-destructive operation. The description adds that the output is DDL (CREATE TABLE statements), which is useful behavioral context beyond the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two concise sentences, front-loaded with the key action, and contains no unnecessary words. Every sentence adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (2 parameters, no nested objects, output schema exists), the description sufficiently covers purpose, inputs, and optionality. It is complete for an AI agent to understand and use the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema covers 100% of parameters with descriptions. The description repeats that project accepts id or name and dialect is optional with allowed values, adding no net new information beyond the schema. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Get' and the resource 'project's schema as CREATE TABLE statements'. It distinguishes from sibling tools (fetch_generation, generate_test_data, list_projects) which deal with data generation and project listing, making the purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explains what the tool does and the inputs (project id/name, optional dialect). While it doesn't explicitly state when not to use it or name alternatives, the context of sibling tools and the clear purpose provide adequate guidance for an AI agent.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_projectsList projectsA
Read-onlyIdempotent
Inspect

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

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
projectsYes
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already provide readOnlyHint, idempotentHint, destructiveHint, so the description's mention of returned fields adds minor context, but no new behavioral traits beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with purpose, then usage advice. No extraneous words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple, parameterless tool with output schema, the description fully covers purpose and usage context. No gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters exist (schema coverage 100%), so the description is not required to add meaning; baseline 4 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it lists SeedBase projects with specific fields (id, name, database type), using a specific verb and resource, and distinguishes it from siblings by noting it's the first step.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly says 'Use this first to find the project to work with,' indicating it's the entry point for other tools like fetch_generation or get_ddl, though it doesn't mention when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources