AI-ERD
Server Details
AI-powered ERD design tool. Create and manage database schemas using DBML with real-time canvas.
- Status
- Unhealthy
- OAuth
- Works in Glama
- Last Tested
- Transport
- Streamable HTTP
- URL
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
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
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
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.
1
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.18-

ThinAir Dataofficial
AlicenseAqualityCmaintenanceConnect any AI to PostgreSQL, MySQL, or SQL Server — 24 dialect-aware tools for query, schema, optimization, and more.423261MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
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.