AI-ERD
Server Details
AI-powered ERD design tool. Create and manage database schemas using DBML with real-time canvas.
Glama couldn't complete the latest health check. If this server requires authentication, missing or expired test credentials may be the cause. A test profile lets Glama authenticate for health checks and discover tools; it is separate from your personal connections.
If you are the author, claim ownership, then add or update a test profile under Admin → Test Profile.
- Status
- Unhealthy
- Uptime
- 0.0% over 41 days
- OAuth
- Works in Glama
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Scored across 23 tools
Every tool has a clearly distinct purpose with no ambiguity. Each tool targets a specific resource (enum, ERD diagram, ref/relationship, table, table group) and a specific action (create, get, list, update, delete), making it easy for an agent to select the correct tool. For example, create_table vs. update_table are clearly differentiated by their action on the same resource.
All tool names follow a consistent verb_noun pattern throughout, with verbs like create, get, list, update, delete paired with nouns like enum, erd_diagram, ref, table, table_group. There are no deviations in naming conventions, making the set predictable and readable.
With 23 tools, the count is slightly high but reasonable for the domain of ERD diagram management, which involves multiple resources (diagrams, tables, enums, relationships, groups) each requiring CRUD operations. It feels comprehensive rather than bloated, though it borders on the upper limit of typical scope.
The tool surface provides complete CRUD/lifecycle coverage for all key resources in the ERD domain: ERD diagrams, tables, enums, relationships, and table groups. Each resource has create, get, list, update, and delete operations, with no obvious gaps that would cause agent dead ends. The descriptions even include important details like UUID usage and partial updates.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
14 tool updates
- Changed
create_enum1 field changed- changed
Input schema / requiredPrevious value: -[ - "description", - "uuid", - "enums" -]New value: +[ + "enums", + "uuid", + "description" +]
- Changed
create_ref7 fields changed- removed
Input schema / properties / refs / items / properties / fromColumnUuidsRemoved value: -{ - "description": "Source column UUIDs", - "items": { - "description": "Column UUID", - "type": "string" - }, - "type": "array" -} - changed
Input schema / properties / refs / items / properties / fromTableUuid / descriptionPrevious value: -"Source table UUID"New value: +"Source table UUID (32-char hex). NOT table name." - added
Input schema / properties / refs / items / properties / refColumnsAdded value: +{ + "description": "Column mappings (from→to pairs). Get column UUIDs from get_table response.", + "items": { + "properties": { + "fromColumnUuid": { + "description": "Source column UUID (32-char hex)", + "type": "string" + }, + "toColumnUuid": { + "description": "Target column UUID (32-char hex)", + "type": "string" + } + }, + "required": [ + "fromColumnUuid", + "toColumnUuid" + ], + "type": "object" + }, + "type": "array" +} - removed
Input schema / properties / refs / items / properties / toColumnUuidsRemoved value: -{ - "description": "Target column UUIDs", - "items": { - "description": "Column UUID", - "type": "string" - }, - "type": "array" -} - changed
Input schema / properties / refs / items / properties / toTableUuid / descriptionPrevious value: -"Target table UUID"New value: +"Target table UUID (32-char hex). NOT table name." - changed
Input schema / properties / refs / items / requiredPrevious value: -[ - "fromTableUuid", - "toTableUuid", - "fromColumnUuids", - "toColumnUuids" -]New value: +[ + "fromTableUuid", + "toTableUuid", + "refColumns" +] - changed
Input schema / requiredPrevious value: -[ - "description", - "uuid", - "refs" -]New value: +[ + "refs", + "uuid", + "description" +]
- Changed
create_table1 field changed- changed
Input schema / requiredPrevious value: -[ - "tables", - "uuid", - "description" -]New value: +[ + "description", + "uuid", + "tables" +]
- Changed
create_table_group1 field changed- changed
Input schema / requiredPrevious value: -[ - "groups", - "uuid", - "description" -]New value: +[ + "description", + "uuid", + "groups" +]
- Changed
delete_enum1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "description", - "enumUuids" -]New value: +[ + "description", + "uuid", + "enumUuids" +]
- Changed
delete_ref1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "description", - "refUuids" -]New value: +[ + "description", + "uuid", + "refUuids" +]
- Changed
delete_table1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "description", - "tableUuids" -]New value: +[ + "tableUuids", + "description", + "uuid" +]
- Changed
delete_table_group1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "description", - "groupUuids" -]New value: +[ + "description", + "uuid", + "groupUuids" +]
- Changed
get_enum1 field changed- changed
Input schema / requiredPrevious value: -[ - "enumUuid", - "uuid" -]New value: +[ + "uuid", + "enumUuid" +]
- Changed
get_table1 field changed- changed
Input schema / requiredPrevious value: -[ - "tableUuid", - "uuid" -]New value: +[ + "uuid", + "tableUuid" +]
- Changed
update_enum1 field changed- changed
Input schema / requiredPrevious value: -[ - "description", - "uuid", - "enums" -]New value: +[ + "enums", + "uuid", + "description" +]
- Changed
update_ref7 fields changed- removed
Input schema / properties / refs / items / properties / fromColumnUuidsRemoved value: -{ - "description": "Source column UUIDs", - "items": { - "description": "Column UUID", - "type": "string" - }, - "type": "array" -} - changed
Input schema / properties / refs / items / properties / fromTableUuid / descriptionPrevious value: -"Source table UUID"New value: +"Source table UUID (32-char hex). NOT table name." - added
Input schema / properties / refs / items / properties / refColumnsAdded value: +{ + "description": "Column mappings (from→to pairs)", + "items": { + "properties": { + "fromColumnUuid": { + "description": "Source column UUID (32-char hex)", + "type": "string" + }, + "toColumnUuid": { + "description": "Target column UUID (32-char hex)", + "type": "string" + } + }, + "required": [ + "fromColumnUuid", + "toColumnUuid" + ], + "type": "object" + }, + "type": "array" +} - changed
Input schema / properties / refs / items / properties / refUuid / descriptionPrevious value: -"Relationship UUID"New value: +"Relationship UUID (32-char hex)" - removed
Input schema / properties / refs / items / properties / toColumnUuidsRemoved value: -{ - "description": "Target column UUIDs", - "items": { - "description": "Column UUID", - "type": "string" - }, - "type": "array" -} - changed
Input schema / properties / refs / items / properties / toTableUuid / descriptionPrevious value: -"Target table UUID"New value: +"Target table UUID (32-char hex). NOT table name." - changed
Input schema / requiredPrevious value: -[ - "description", - "uuid", - "refs" -]New value: +[ + "refs", + "uuid", + "description" +]
- Changed
update_table7 fields changed- changed
Input schema / properties / tables / items / properties / columns / descriptionPrevious value: -"Table columns. Include 'uuid' for partial column update, omit for full replacement"New value: +"Columns with explicit action. 'add': name+type required, uuid forbidden. 'mod': uuid required, partial update. 'del': uuid required." - added
Input schema / properties / tables / items / properties / columns / items / properties / actionAdded value: +{ + "description": "Required. 'add': new column (name+type required, uuid optional). 'mod': update (uuid required). 'del': delete (uuid required).", + "type": "string" +} - changed
Input schema / properties / tables / items / properties / columns / items / properties / name / descriptionPrevious value: -"Column name"New value: +"Column name (required for add)" - changed
Input schema / properties / tables / items / properties / columns / items / properties / type / descriptionPrevious value: -"Column type (e.g., int, varchar(255))"New value: +"Column type e.g. int, varchar(255) (required for add)" - changed
Input schema / properties / tables / items / properties / columns / items / properties / uuid / descriptionPrevious value: -"Column UUID (for partial update only, get from list_tables/get_table response)"New value: +"Column UUID (required for mod/del, forbidden for add). Get from get_table." - added
Input schema / properties / tables / items / properties / columns / items / requiredAdded value: +[ + "action" +] - changed
Input schema / requiredPrevious value: -[ - "tables", - "uuid", - "description" -]New value: +[ + "description", + "uuid", + "tables" +]
- Changed
update_table_group1 field changed- changed
Input schema / requiredPrevious value: -[ - "groups", - "uuid", - "description" -]New value: +[ + "description", + "uuid", + "groups" +]
15 tool updates
- Changed
create_enum1 field changed- changed
Input schema / requiredPrevious value: -[ - "description", - "enums", - "uuid" -]New value: +[ + "description", + "uuid", + "enums" +]
- Changed
create_ref1 field changed- changed
Input schema / requiredPrevious value: -[ - "description", - "refs", - "uuid" -]New value: +[ + "description", + "uuid", + "refs" +]
- Changed
create_table1 field changed- changed
Input schema / requiredPrevious value: -[ - "tables", - "description", - "uuid" -]New value: +[ + "tables", + "uuid", + "description" +]
- Changed
create_table_group1 field changed- changed
Input schema / requiredPrevious value: -[ - "groups", - "description", - "uuid" -]New value: +[ + "groups", + "uuid", + "description" +]
- Changed
delete_enum1 field changed- changed
Input schema / requiredPrevious value: -[ - "enumUuids", - "description", - "uuid" -]New value: +[ + "uuid", + "description", + "enumUuids" +]
- Changed
delete_ref1 field changed- changed
Input schema / requiredPrevious value: -[ - "refUuids", - "description", - "uuid" -]New value: +[ + "uuid", + "description", + "refUuids" +]
- Changed
delete_table1 field changed- changed
Input schema / requiredPrevious value: -[ - "tableUuids", - "description", - "uuid" -]New value: +[ + "uuid", + "description", + "tableUuids" +]
- Changed
delete_table_group1 field changed- changed
Input schema / requiredPrevious value: -[ - "groupUuids", - "description", - "uuid" -]New value: +[ + "uuid", + "description", + "groupUuids" +]
- Changed
get_enum1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "enumUuid" -]New value: +[ + "enumUuid", + "uuid" +]
- Changed
get_ref1 field changed- changed
Input schema / requiredPrevious value: -[ - "refUuid", - "uuid" -]New value: +[ + "uuid", + "refUuid" +]
- Changed
get_table_group1 field changed- changed
Input schema / requiredPrevious value: -[ - "groupUuid", - "uuid" -]New value: +[ + "uuid", + "groupUuid" +]
- Changed
update_enum1 field changed- changed
Input schema / requiredPrevious value: -[ - "description", - "enums", - "uuid" -]New value: +[ + "description", + "uuid", + "enums" +]
- Changed
update_ref1 field changed- changed
Input schema / requiredPrevious value: -[ - "description", - "refs", - "uuid" -]New value: +[ + "description", + "uuid", + "refs" +]
- Changed
update_table1 field changed- changed
Input schema / requiredPrevious value: -[ - "tables", - "description", - "uuid" -]New value: +[ + "tables", + "uuid", + "description" +]
- Changed
update_table_group1 field changed- changed
Input schema / requiredPrevious value: -[ - "groups", - "description", - "uuid" -]New value: +[ + "groups", + "uuid", + "description" +]
1 tool update
- Changed
get_table1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "tableUuid" -]New value: +[ + "tableUuid", + "uuid" +]
17 tool updates
- Changed
create_enum1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "enums", - "description" -]New value: +[ + "description", + "enums", + "uuid" +]
- Added
create_erd_diagram - Changed
create_ref12 fields changed- added
Input schema / properties / refs / items / properties / fromColumnUuidsAdded value: +{ + "description": "Source column UUIDs", + "items": { + "description": "Column UUID", + "type": "string" + }, + "type": "array" +} - removed
Input schema / properties / refs / items / properties / fromColumnsRemoved value: -{ - "description": "Source column name(s)", - "type": "string" -} - removed
Input schema / properties / refs / items / properties / fromSchemaRemoved value: -{ - "description": "Source schema name", - "type": "string" -} - removed
Input schema / properties / refs / items / properties / fromTableRemoved value: -{ - "description": "Source table name", - "type": "string" -} - added
Input schema / properties / refs / items / properties / fromTableUuidAdded value: +{ + "description": "Source table UUID", + "type": "string" +} - added
Input schema / properties / refs / items / properties / toColumnUuidsAdded value: +{ + "description": "Target column UUIDs", + "items": { + "description": "Column UUID", + "type": "string" + }, + "type": "array" +} - removed
Input schema / properties / refs / items / properties / toColumnsRemoved value: -{ - "description": "Target column name(s)", - "type": "string" -} - removed
Input schema / properties / refs / items / properties / toSchemaRemoved value: -{ - "description": "Target schema name", - "type": "string" -} - removed
Input schema / properties / refs / items / properties / toTableRemoved value: -{ - "description": "Target table name", - "type": "string" -} - added
Input schema / properties / refs / items / properties / toTableUuidAdded value: +{ + "description": "Target table UUID", + "type": "string" +} - changed
Input schema / properties / refs / items / requiredPrevious value: -[ - "fromTable", - "fromColumns", - "toTable", - "toColumns" -]New value: +[ + "fromTableUuid", + "toTableUuid", + "fromColumnUuids", + "toColumnUuids" +] - changed
Input schema / requiredPrevious value: -[ - "uuid", - "refs", - "description" -]New value: +[ + "description", + "refs", + "uuid" +]
- Changed
create_table1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "description", - "tables" -]New value: +[ + "tables", + "description", + "uuid" +]
- Changed
create_table_group1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "description", - "groups" -]New value: +[ + "groups", + "description", + "uuid" +]
- Changed
delete_enum1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "description", - "enumUuids" -]New value: +[ + "enumUuids", + "description", + "uuid" +]
- Changed
delete_ref1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "description", - "refUuids" -]New value: +[ + "refUuids", + "description", + "uuid" +]
- Changed
delete_table1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "description", - "tableUuids" -]New value: +[ + "tableUuids", + "description", + "uuid" +]
- Changed
delete_table_group1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "description", - "groupUuids" -]New value: +[ + "groupUuids", + "description", + "uuid" +]
- Changed
get_enum1 field changed- changed
Input schema / requiredPrevious value: -[ - "enumUuid", - "uuid" -]New value: +[ + "uuid", + "enumUuid" +]
- Changed
get_ref1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "refUuid" -]New value: +[ + "refUuid", + "uuid" +]
- Changed
get_table_group1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "groupUuid" -]New value: +[ + "groupUuid", + "uuid" +]
- Changed
update_enum1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "enums", - "description" -]New value: +[ + "description", + "enums", + "uuid" +]
- Added
update_erd_diagram - Changed
update_ref11 fields changed- added
Input schema / properties / refs / items / properties / fromColumnUuidsAdded value: +{ + "description": "Source column UUIDs", + "items": { + "description": "Column UUID", + "type": "string" + }, + "type": "array" +} - removed
Input schema / properties / refs / items / properties / fromColumnsRemoved value: -{ - "description": "Source column name(s)", - "type": "string" -} - removed
Input schema / properties / refs / items / properties / fromSchemaRemoved value: -{ - "description": "Source schema name", - "type": "string" -} - removed
Input schema / properties / refs / items / properties / fromTableRemoved value: -{ - "description": "Source table name", - "type": "string" -} - added
Input schema / properties / refs / items / properties / fromTableUuidAdded value: +{ + "description": "Source table UUID", + "type": "string" +} - added
Input schema / properties / refs / items / properties / toColumnUuidsAdded value: +{ + "description": "Target column UUIDs", + "items": { + "description": "Column UUID", + "type": "string" + }, + "type": "array" +} - removed
Input schema / properties / refs / items / properties / toColumnsRemoved value: -{ - "description": "Target column name(s)", - "type": "string" -} - removed
Input schema / properties / refs / items / properties / toSchemaRemoved value: -{ - "description": "Target schema name", - "type": "string" -} - removed
Input schema / properties / refs / items / properties / toTableRemoved value: -{ - "description": "Target table name", - "type": "string" -} - added
Input schema / properties / refs / items / properties / toTableUuidAdded value: +{ + "description": "Target table UUID", + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "uuid", - "refs", - "description" -]New value: +[ + "description", + "refs", + "uuid" +]
- Changed
update_table1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "description", - "tables" -]New value: +[ + "tables", + "description", + "uuid" +]
- Changed
update_table_group1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "description", - "groups" -]New value: +[ + "groups", + "description", + "uuid" +]
18 tool updates
- Changed
create_enum1 field changed- changed
Input schema / requiredPrevious value: -[ - "enums", - "uuid", - "description" -]New value: +[ + "uuid", + "enums", + "description" +]
- Changed
create_ref1 field changed- changed
Input schema / requiredPrevious value: -[ - "refs", - "uuid", - "description" -]New value: +[ + "uuid", + "refs", + "description" +]
- Changed
create_table3 fields changed- added
Input schema / properties / tables / items / properties / columns / items / properties / uuidAdded value: +{ + "description": "Column UUID (for partial update only, get from list_tables/get_table response)", + "type": "string" +} - removed
Input schema / properties / tables / items / properties / columns / items / requiredRemoved value: -[ - "name", - "type" -] - changed
Input schema / requiredPrevious value: -[ - "description", - "uuid", - "tables" -]New value: +[ + "uuid", + "description", + "tables" +]
- Changed
create_table_group1 field changed- changed
Input schema / requiredPrevious value: -[ - "description", - "uuid", - "groups" -]New value: +[ + "uuid", + "description", + "groups" +]
- Changed
delete_enum1 field changed- changed
Input schema / requiredPrevious value: -[ - "description", - "uuid", - "enumUuids" -]New value: +[ + "uuid", + "description", + "enumUuids" +]
- Changed
delete_ref1 field changed- changed
Input schema / requiredPrevious value: -[ - "description", - "uuid", - "refUuids" -]New value: +[ + "uuid", + "description", + "refUuids" +]
- Changed
delete_table1 field changed- changed
Input schema / requiredPrevious value: -[ - "tableUuids", - "description", - "uuid" -]New value: +[ + "uuid", + "description", + "tableUuids" +]
- Changed
delete_table_group1 field changed- changed
Input schema / requiredPrevious value: -[ - "description", - "uuid", - "groupUuids" -]New value: +[ + "uuid", + "description", + "groupUuids" +]
- Changed
get_enum1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "enumUuid" -]New value: +[ + "enumUuid", + "uuid" +]
- Changed
list_enums2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number (1-based, default: 1)", + "type": "integer" +} - added
Input schema / properties / sizeAdded value: +{ + "description": "Page size (default: 20, max: 100)", + "type": "integer" +}
- Changed
list_erd_diagrams2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number (1-based, default: 1)", + "type": "integer" +} - added
Input schema / properties / sizeAdded value: +{ + "description": "Page size (default: 20, max: 100)", + "type": "integer" +}
- Changed
list_refs2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number (1-based, default: 1)", + "type": "integer" +} - added
Input schema / properties / sizeAdded value: +{ + "description": "Page size (default: 20, max: 100)", + "type": "integer" +}
- Changed
list_table_groups2 fields changed- added
Input schema / properties / pageAdded value: +{ + "description": "Page number (1-based, default: 1)", + "type": "integer" +} - added
Input schema / properties / sizeAdded value: +{ + "description": "Page size (default: 20, max: 100)", + "type": "integer" +}
- Changed
list_tables3 fields changed- added
Input schema / properties / includeColumnsAdded value: +{ + "description": "Include column details with id (for partial update). Default: false", + "type": "boolean" +} - added
Input schema / properties / pageAdded value: +{ + "description": "Page number (1-based, default: 1)", + "type": "integer" +} - added
Input schema / properties / sizeAdded value: +{ + "description": "Page size (default: 20, max: 100)", + "type": "integer" +}
- Changed
update_enum1 field changed- changed
Input schema / requiredPrevious value: -[ - "enums", - "uuid", - "description" -]New value: +[ + "uuid", + "enums", + "description" +]
- Changed
update_ref1 field changed- changed
Input schema / requiredPrevious value: -[ - "refs", - "uuid", - "description" -]New value: +[ + "uuid", + "refs", + "description" +]
- Changed
update_table4 fields changed- changed
Input schema / properties / tables / items / properties / columns / descriptionPrevious value: -"Table columns"New value: +"Table columns. Include 'uuid' for partial column update, omit for full replacement" - added
Input schema / properties / tables / items / properties / columns / items / properties / uuidAdded value: +{ + "description": "Column UUID (for partial update only, get from list_tables/get_table response)", + "type": "string" +} - removed
Input schema / properties / tables / items / properties / columns / items / requiredRemoved value: -[ - "name", - "type" -] - changed
Input schema / requiredPrevious value: -[ - "description", - "uuid", - "tables" -]New value: +[ + "uuid", + "description", + "tables" +]
- Changed
update_table_group1 field changed- changed
Input schema / requiredPrevious value: -[ - "description", - "uuid", - "groups" -]New value: +[ + "uuid", + "description", + "groups" +]
15 tool updates
- Changed
create_enum1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "description", - "enums" -]New value: +[ + "enums", + "uuid", + "description" +]
- Changed
create_ref1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "description", - "refs" -]New value: +[ + "refs", + "uuid", + "description" +]
- Changed
create_table1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "tables", - "description" -]New value: +[ + "description", + "uuid", + "tables" +]
- Changed
create_table_group1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "groups", - "description" -]New value: +[ + "description", + "uuid", + "groups" +]
- Changed
delete_enum1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "enumUuids", - "description" -]New value: +[ + "description", + "uuid", + "enumUuids" +]
- Changed
delete_ref1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "refUuids", - "description" -]New value: +[ + "description", + "uuid", + "refUuids" +]
- Changed
delete_table1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "tableUuids", - "description" -]New value: +[ + "tableUuids", + "description", + "uuid" +]
- Changed
delete_table_group1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "groupUuids", - "description" -]New value: +[ + "description", + "uuid", + "groupUuids" +]
- Changed
get_ref1 field changed- changed
Input schema / requiredPrevious value: -[ - "refUuid", - "uuid" -]New value: +[ + "uuid", + "refUuid" +]
- Changed
get_table1 field changed- changed
Input schema / requiredPrevious value: -[ - "tableUuid", - "uuid" -]New value: +[ + "uuid", + "tableUuid" +]
- Changed
get_table_group1 field changed- changed
Input schema / requiredPrevious value: -[ - "groupUuid", - "uuid" -]New value: +[ + "uuid", + "groupUuid" +]
- Changed
update_enum1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "description", - "enums" -]New value: +[ + "enums", + "uuid", + "description" +]
- Changed
update_ref1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "description", - "refs" -]New value: +[ + "refs", + "uuid", + "description" +]
- Changed
update_table1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "tables", - "description" -]New value: +[ + "description", + "uuid", + "tables" +]
- Changed
update_table_group1 field changed- changed
Input schema / requiredPrevious value: -[ - "uuid", - "groups", - "description" -]New value: +[ + "description", + "uuid", + "groups" +]
27 tool updates
- Added
create_enum - Removed
create_erd_diagram - Removed
create_erd_gzip - Added
create_ref - Added
create_table - Added
create_table_group - Added
delete_enum - Added
delete_ref - Added
delete_table - Added
delete_table_group - Added
get_enum - Removed
get_erd_diagram - Removed
get_erd_gzip - Added
get_ref - Added
get_table - Added
get_table_group - Added
list_enums - Changed
list_erd_diagrams1 field changed- added
Input schema / properties / nameAdded value: +{ + "description": "Filter diagrams by name (partial match, case-insensitive)", + "type": "string" +}
- Added
list_refs - Added
list_table_groups - Added
list_tables - Added
update_enum - Removed
update_erd_diagram - Removed
update_erd_gzip - Added
update_ref - Added
update_table - Added
update_table_group
7 tool updates
- First observed
create_erd_diagram - First observed
create_erd_gzip - First observed
get_erd_diagram - First observed
get_erd_gzip - First observed
list_erd_diagrams - First observed
update_erd_diagram - First observed
update_erd_gzip
Related MCP Connectors
Generate, edit, and export data-architecture diagrams from your AI. Column lineage, PNG in chat.
Generate, edit, and manage Eraser diagrams and docs with AI.
AI-powered diagrams, mind maps, flowcharts on a free unlimited collaborative whiteboard
Read and edit DB Planner database schemas, diagrams and board layouts as an AI agent.
Related MCP Servers
- FlicenseAqualityCmaintenanceTurns relational schemas into editable entity-relationship diagrams in draw.io, supporting live databases, SQL DDL, YAML/JSON specs, and existing .drawio files, with tools for managing tables, columns, and relations.16-
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to read and edit entity-relationship diagrams and SQL database schemas on the liz-whiteboard collaborative whiteboard through natural language, supporting table, column, and relationship management.MIT
- FlicenseNot gradedqualityDmaintenanceA multi-vendor database management tool that enables LLMs to query, migrate, and synchronize schemas across SQL engines like PostgreSQL, MySQL, and Oracle. It features persistent knowledge management for storing AI-generated context about database structures and business rules.9 npm-

ThinAir Dataofficial
AlicenseAqualityCmaintenanceConnect any AI to PostgreSQL, MySQL, or SQL Server — 24 dialect-aware tools for query, schema, optimization, and more.2326 npm1MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.