Canvs
Server Details
AI-powered diagrams, mind maps, flowcharts on a free unlimited collaborative whiteboard
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
6 toolsadd_elementsAdd elements to the board or create a new oneAInspect
Creates elements on a canvas. Creates a new canvas if room_id is omitted, or adds to the existing canvas if room_id is provided. Use cases: wireframes, UI mockups, freeform illustrations, standalone shapes, and manual layouts that Mermaid does not cover well. For diagrams Mermaid can express, use add_elements_from_mermaid instead. Element types: rectangle, ellipse, diamond, arrow, line, freedraw, text, image. Rich text: the text field supports limited HTML for text elements and rectangle/ellipse/diamond shape labels. Supports the rich-text plugin HTML subset: /, /, , , /, //, , , and . Use textAlign for left/center/right alignment; avoid unsupported HTML/CSS. TEXT IN SHAPES: use containerId on text element pointing to shape id. ARROWS: Position at EDGE of source shape. Auto-bound within 30px. Colors: strokeColor, backgroundColor (hex).
| Name | Required | Description | Default |
|---|---|---|---|
| room_id | No | Room ID of an existing canvas to add to. If the user is continuing a canvas already referenced in this conversation (by room_id, or a URL like ?room=[room_id] or /gdrive?id=[room_id]), pass it here. Omit to create a new canvas. | |
| elements | Yes | Array of element definitions to create |
Output Schema
| Name | Required | Description |
|---|---|---|
| url | Yes | Canvas room URL |
| isNew | Yes | Whether a new canvas was created |
| room_id | No | Canvas room ID |
| appState | Yes | Canvas app state (viewBackgroundColor, etc.) |
| elements | Yes | All elements currently on the canvas |
| collabUrl | Yes | Collaboration server URL for Socket.IO |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations only indicate non-readonly and non-destructive, which is consistent with the description's 'creates' language. The description adds meaningful behavioral context beyond the annotations: the room_id behavior, arrow auto-binding within 30px, rich-text HTML subset, and color handling. This goes well beyond the minimal hints, though it doesn't cover every edge case.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is fairly long but well-structured with clear section headers (Rich text, TEXT IN SHAPES, ARROWS, Colors). The main purpose is front-loaded. Some redundancy exists with the schema (e.g., the HTML subset is repeated), but each section provides useful guidance. Overall, it earns its length without being bloated.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (multiple element types, rich text, arrow binding, canvas creation), the description covers key aspects well: usage context, element types, rich-text constraints, arrow positioning, and color format. An output schema exists, so return values are not needed. Minor gaps include lack of coordinate system explanation and the textAlign reference without a schema parameter, but the description is still highly complete for a complex tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description enriches this by explaining when room_id should be used, elaborating on the element types and their inferred defaults, explaining containerId for bound text, and detailing arrow binding behavior. It adds value over the schema descriptions, though some details (like textAlign) are mentioned in the description but not present as a schema property.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool creates elements on a canvas and distinguishes between creating a new canvas or adding to an existing one via room_id. It explicitly names the sibling tool add_elements_from_mermaid and explains when to use that instead, making the purpose and scope unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit 'when to use' guidance with concrete use cases (wireframes, UI mockups, freeform illustrations, etc.) and directly says 'For diagrams Mermaid can express, use add_elements_from_mermaid instead.' It also explains when to pass room_id versus omit it, giving clear alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
add_elements_from_mermaidCreate a diagram from Mermaid, or add one to the boardAInspect
Creates diagram elements from a Mermaid definition. Creates a new canvas if room_id is omitted, or adds to the existing canvas if room_id is provided. Preferred over add_elements for new diagrams and large changes to existing diagrams whenever the content can be represented in Mermaid. Supports: flowchart, graph, flowchart-elk, sequenceDiagram, classDiagram, classDiagram-v2, stateDiagram, stateDiagram-v2, erDiagram, journey, gantt, pie, gitGraph, mindmap, timeline, C4Context, C4Container, C4Component, C4Dynamic, C4Deployment, sankey, sankey-beta, quadrantChart, xychart, xychart-beta, requirement, requirementDiagram, kanban, architecture, block, block-beta, packet, packet-beta, radar-beta, treemap, info. Example: "flowchart TD\n A[Start] --> B{Decision}\n B -->|Yes| C[OK]\n B -->|No| D[Cancel]"
| Name | Required | Description | Default |
|---|---|---|---|
| config | No | Optional Mermaid rendering config. flowchart.curve is handled automatically. | |
| mermaid | Yes | Mermaid diagram definition. Prefer converting compatible user requests into Mermaid instead of using add_elements. | |
| room_id | No | Room ID of an existing canvas to add to. If the user is continuing a canvas already referenced in this conversation (by room_id, or a URL like ?room=[room_id] or /gdrive?id=[room_id]), pass it here. Omit to create a new canvas. | |
| timeout | No | Room lifetime in seconds (default: 3600, max: 86400). Only used when creating new canvas |
Output Schema
| Name | Required | Description |
|---|---|---|
| url | Yes | Canvas room URL |
| isNew | Yes | Whether a new canvas was created |
| room_id | No | Canvas room ID |
| appState | Yes | Canvas app state (viewBackgroundColor, etc.) |
| elements | Yes | All elements currently on the canvas |
| collabUrl | Yes | Collaboration server URL for Socket.IO |
| pendingMermaid | No | Mermaid definition pending client-side rendering |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description goes beyond the annotations by disclosing that a new canvas is created if room_id is omitted, but elements are added to an existing canvas if room_id is provided. It also notes that config.curve is handled server-side. This adds meaningful behavioral context beyond the minimal readOnly/destructive hints. It does not mention error handling or whether elements are appended vs. replaced, but key behavior is covered.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-organized: a clear first sentence, a preference statement, a list of supported diagram types, and an example. The list is long but necessary given the many Mermaid diagram types. No filler, but it could arguably be trimmed (e.g., move the full list to a separate reference). It earns a 4, not a 5, due to the length.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the tool's purpose, when to use it, conditional behavior (new vs. existing canvas), supported Mermaid diagram types, and includes an example. An output schema exists, so return values need not be detailed. It misses error-handling and edge cases (e.g., invalid Mermaid), but it is fairly complete for the tool's complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The tool description adds a few useful notes (e.g., 'prefer converting compatible user requests into Mermaid') but mostly repeats what the schema already states for parameters like room_id and timeout. It does not significantly enrich parameter understanding beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool 'creates diagram elements from a Mermaid definition' and explains the key conditional behavior (new canvas vs. existing canvas based on room_id). It distinguishes itself from the sibling add_elements by specifying that this tool works from Mermaid and is preferred for certain cases.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly names an alternative (add_elements) and states when this tool is preferred: 'for new diagrams and large changes to existing diagrams whenever the content can be represented in Mermaid.' However, it does not explicitly state when NOT to use it (e.g., for small edits), so it falls just short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_elementsDelete elements from the boardADestructiveInspect
Delete elements from a canvas. Requires room_id from a previous Canvs tool result. Pass ids array of element IDs to delete.
| Name | Required | Description | Default |
|---|---|---|---|
| ids | Yes | Array of element IDs to delete | |
| room_id | Yes | Room ID from a previous Canvs tool result. If you only have a URL, extract it from https://[host]/?room=[room_id] or https://[host]/gdrive?id=[room_id]. |
Output Schema
| Name | Required | Description |
|---|---|---|
| url | Yes | Canvas room URL |
| isNew | Yes | Whether a new canvas was created |
| room_id | No | Canvas room ID |
| appState | Yes | Canvas app state (viewBackgroundColor, etc.) |
| elements | Yes | All elements currently on the canvas |
| collabUrl | Yes | Collaboration server URL for Socket.IO |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark destructiveHint=true, and the description explicitly says 'delete'. It adds the dependency on room_id from a prior result, but doesn't detail irreversibility or side effects. With annotations present, this is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the verb and resource, and contains no unnecessary detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple delete tool with full schema annotations and an output schema, the description covers the necessary usage context and prerequisites. No significant gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and both parameters are well-described in the schema. The description only restates the ids and room_id information, adding no new semantic value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool deletes elements from a canvas, using a specific verb and resource. This distinguishes it from sibling tools like add_elements and update_elements.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides the prerequisite of room_id from a previous Canvs tool result and instructs the user to pass an ids array. Though it doesn't explicitly mention alternatives, the context is clear for a delete operation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_guideGet whiteboard instructionsARead-onlyInspect
Returns guidance on diagram-creation workflow and tool selection: how to choose between Mermaid and manual element creation, and the recommended iteration workflow. Consult before building complex diagrams.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| guide | Yes | Tool usage instructions text |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds useful context about the guide's content and purpose, but doesn't disclose additional behavioral traits such as output format or limitations. Given the strong annotation coverage, this is sufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the primary purpose, and includes a clear usage directive. Every sentence adds value with no redundant or irrelevant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (no params, output schema provided), the description is complete. It explains what the guidance covers and when to use it, while the output schema handles return value details. No additional context is needed for an agent to invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the description need not explain parameter details. The schema contains no properties, and the description clarifies the tool's purpose without needing to compensate for missing parameter information. Baseline 4 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool 'Returns guidance on diagram-creation workflow and tool selection,' specifying the exact resource and action. It also distinguishes from sibling tools like add_elements or query_elements by focusing on advisory content rather than element manipulation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly advises to 'Consult before building complex diagrams,' providing clear usage context. It also outlines the key topics covered (Mermaid vs. manual creation, iteration workflow), but does not explicitly state when not to use it or mention alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
query_elementsFind elements on the boardARead-onlyInspect
Query elements on a canvas. Requires room_id from a previous Canvs tool result. Returns elements matching optional filters. Use this before update_elements when making small edits to existing diagrams. If no browser has the canvas open, returns an error — ask the user to open the canvas URL in their browser and retry.
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Filter by element type | |
| filter | No | Additional key-value filters (e.g., {locked: true}) | |
| room_id | Yes | Room ID from a previous Canvs tool result. If you only have a URL, extract it from https://[host]/?room=[room_id] or https://[host]/gdrive?id=[room_id]. |
Output Schema
| Name | Required | Description |
|---|---|---|
| count | Yes | Number of matching elements |
| elements | Yes | Matching elements |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, destructiveHint=false, so the read-only nature is known. The description adds valuable behavioral context not in annotations: the requirement that a browser must have the canvas open, and the specific error/retry flow. It does not over-explain.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose, followed by prerequisite, usage context, and error handling. Each sentence contributes meaning, though some information (room_id requirement) is also present in the schema, making it slightly redundant.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given that an output schema exists and annotations cover safety, the description adequately covers the tool's purpose, prerequisites, related tools, and a key failure mode. It is complete enough for an agent to invoke correctly without further clarification.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with descriptions for all parameters, including a detailed room_id extraction pattern. The description only restates that room_id is required and that there are optional filters, adding minimal semantic value beyond the schema. Baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: querying elements on a canvas with optional filters. It also distinguishes itself from siblings by explicitly positioning it as a precursor to update_elements for small edits to existing diagrams.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit usage guidance: requires a room_id from a previous Canvs tool result, should be used before update_elements, and describes the browser-open prerequisite and how to handle the error if the browser is not open. This is well beyond minimal guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_elementsUpdate elements on the boardADestructiveInspect
Update elements on a canvas. Requires room_id from a previous Canvs tool result. Pass elements array with id and fields to update. IMPORTANT: in each update object ONLY id is required; all other fields are optional patch fields. Include ONLY elements that need changes; elements omitted from the request remain unchanged on the board. Prefer this tool for SMALL edits to existing diagrams (rename/move/restyle a few elements), typically after query_elements.
| Name | Required | Description | Default |
|---|---|---|---|
| room_id | Yes | Room ID from a previous Canvs tool result. If you only have a URL, extract it from https://[host]/?room=[room_id] or https://[host]/gdrive?id=[room_id]. | |
| elements | Yes | Array of element updates (each must have id) |
Output Schema
| Name | Required | Description |
|---|---|---|
| url | Yes | Canvas room URL |
| isNew | Yes | Whether a new canvas was created |
| room_id | No | Canvas room ID |
| appState | Yes | Canvas app state (viewBackgroundColor, etc.) |
| elements | Yes | All elements currently on the canvas |
| collabUrl | Yes | Collaboration server URL for Socket.IO |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate this is a destructive/mutating operation (readOnlyHint=false, destructiveHint=true). The description adds critical patch semantics: 'only id is required; all other fields are optional patch fields' and 'elements omitted from the request remain unchanged.' These go beyond the annotations and clarify exactly how the mutation behaves.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact — five sentences, with key information front-loaded. The critical 'IMPORTANT' caveat is highlighted, and every sentence adds value (purpose, prerequisite, input format, patch behavior, usage context). No fluff or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (2 outer params, nested elements objects), the description covers the essential workflow: requires room_id from a previous Canvs result, passes a patch array, and is preferred for small edits after query_elements. It omits failure behavior but is otherwise complete for practical use, especially since an output schema exists.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema has 100% coverage, so the baseline is 3. The description reinforces the patch nature of 'elements' and emphasizes that fields are optional, but the schema already describes each property and the items-level note 'only id is required.' No additional meaning beyond the schema is added.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'Update elements on a canvas,' using a specific verb and resource. It clearly distinguishes from siblings by emphasizing 'existing diagrams' and 'small edits' (rename/move/restyle), contrasting with add_elements and delete_elements. This makes the tool's purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit when-to-use guidance: 'Prefer this tool for SMALL edits to existing diagrams... typically after query_elements.' It also requires room_id from a previous result, covering prerequisites. It stakes a clear position among siblings, though it doesn't explicitly name build/delete alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
2 tool updates
- Changed
add_elements1 field changed- changed
Input schema / properties / room_id / descriptionPrevious value: -"Room ID. If not provided, creates a new canvas. Extract from URLs as ?room=[room_id] or /gdrive?id=[room_id]."New value: +"Room ID of an existing canvas to add to. If the user is continuing a canvas already referenced in this conversation (by room_id, or a URL like ?room=[room_id] or /gdrive?id=[room_id]), pass it here. Omit to create a new canvas."
- Changed
add_elements_from_mermaid1 field changed- changed
Input schema / properties / room_id / descriptionPrevious value: -"Room ID. If not provided, creates a new canvas. Extract from URLs as ?room=[room_id] or /gdrive?id=[room_id]."New value: +"Room ID of an existing canvas to add to. If the user is continuing a canvas already referenced in this conversation (by room_id, or a URL like ?room=[room_id] or /gdrive?id=[room_id]), pass it here. Omit to create a new canvas."
2 tool updates
- Changed
add_elements2 fields changed- changed
Input schema / properties / elements / items / descriptionPrevious value: -"Per-type required fields: rectangle/ellipse/diamond → x, y (width/height default to 100). text → x, y, text (width/height auto-sized; omit or set to 0). arrow/line → x, y, points (e.g. [[0,0],[100,0]]); optionally startBinding/endBinding instead of points. image → x, y, width, height, fileId. freedraw → x, y, points. type is inferred from fields if omitted (text field → text, points → line, fileId → image, else rectangle)."New value: +"Per-type required fields: rectangle/ellipse/diamond → x, y (width/height default to 100). text → x, y, text (width/height auto-sized; omit or set to 0). rectangle/ellipse/diamond may also include text, which creates a bound label. arrow/line → x, y, points (e.g. [[0,0],[100,0]]); optionally startBinding/endBinding instead of points. image → x, y, width, height, fileId. freedraw → x, y, points. type is inferred from fields if omitted (text field → text, points → line, fileId → image, else rectangle)." - changed
Input schema / properties / elements / items / properties / text / descriptionPrevious value: -"Text content. Required for type=text. Also used as arrow label when set on an arrow."New value: +"Text content. Required for type=text. For text elements and rectangle/ellipse/diamond shape labels, Supports the rich-text plugin HTML subset: <b>/<strong>, <i>/<em>, <u>, <br>, <div>/<p>, <ul>/<ol>/<li>, <a href>, <font color>, and <span style=\"color, background/background-color, font-size, font-family\">. Use textAlign for left/center/right alignment; avoid unsupported HTML/CSS. Also used as arrow label when set on an arrow."
- Changed
update_elements1 field changed- changed
Input schema / properties / elements / items / properties / text / descriptionPrevious value: -"New text content (for text elements or arrow labels)"New value: +"New text content. For text elements and rectangle/ellipse/diamond shape labels, Supports the rich-text plugin HTML subset: <b>/<strong>, <i>/<em>, <u>, <br>, <div>/<p>, <ul>/<ol>/<li>, <a href>, <font color>, and <span style=\"color, background/background-color, font-size, font-family\">. Use textAlign for left/center/right alignment; avoid unsupported HTML/CSS. Shape text updates the bound label."
5 tool updates
- Changed
add_elements3 fields changed- added
Input schema / properties / room_idAdded value: +{ + "description": "Room ID. If not provided, creates a new canvas. Extract from URLs as ?room=[room_id] or /gdrive?id=[room_id].", + "type": "string" +} - removed
Input schema / properties / room_urlRemoved value: -{ - "description": "Room URL or ID. If not provided, creates a new canvas", - "type": "string" -} - added
Output schema / properties / room_idAdded value: +{ + "description": "Canvas room ID", + "type": "string" +}
- Changed
add_elements_from_mermaid3 fields changed- added
Input schema / properties / room_idAdded value: +{ + "description": "Room ID. If not provided, creates a new canvas. Extract from URLs as ?room=[room_id] or /gdrive?id=[room_id].", + "type": "string" +} - removed
Input schema / properties / room_urlRemoved value: -{ - "description": "Room URL or ID. If not provided, creates a new canvas", - "type": "string" -} - added
Output schema / properties / room_idAdded value: +{ + "description": "Canvas room ID", + "type": "string" +}
- Changed
delete_elements4 fields changed- added
Input schema / properties / room_idAdded value: +{ + "description": "Room ID from a previous Canvs tool result. If you only have a URL, extract it from https://[host]/?room=[room_id] or https://[host]/gdrive?id=[room_id].", + "type": "string" +} - removed
Input schema / properties / room_urlRemoved value: -{ - "description": "Canvas URL from create_canvas (e.g. https://canvs.io/?room=XXXX) or a Google Drive board URL (e.g. https://canvs.io/gdrive?id=FILE_ID)", - "type": "string" -} - changed
Input schema / requiredPrevious value: -[ - "room_url", - "ids" -]New value: +[ + "room_id", + "ids" +] - added
Output schema / properties / room_idAdded value: +{ + "description": "Canvas room ID", + "type": "string" +}
- Changed
query_elements3 fields changed- added
Input schema / properties / room_idAdded value: +{ + "description": "Room ID from a previous Canvs tool result. If you only have a URL, extract it from https://[host]/?room=[room_id] or https://[host]/gdrive?id=[room_id].", + "type": "string" +} - removed
Input schema / properties / room_urlRemoved value: -{ - "description": "Canvas URL from create_canvas (e.g. https://canvs.io/?room=XXXX) or a Google Drive board URL (e.g. https://canvs.io/gdrive?id=FILE_ID)", - "type": "string" -} - changed
Input schema / requiredPrevious value: -[ - "room_url" -]New value: +[ + "room_id" +]
- Changed
update_elements4 fields changed- added
Input schema / properties / room_idAdded value: +{ + "description": "Room ID from a previous Canvs tool result. If you only have a URL, extract it from https://[host]/?room=[room_id] or https://[host]/gdrive?id=[room_id].", + "type": "string" +} - removed
Input schema / properties / room_urlRemoved value: -{ - "description": "Canvas URL from create_canvas (e.g. https://canvs.io/?room=XXXX) or a Google Drive board URL (e.g. https://canvs.io/gdrive?id=FILE_ID)", - "type": "string" -} - changed
Input schema / requiredPrevious value: -[ - "room_url", - "elements" -]New value: +[ + "room_id", + "elements" +] - added
Output schema / properties / room_idAdded value: +{ + "description": "Canvas room ID", + "type": "string" +}
2 tool updates
- Changed
add_elements18 fields changed- added
Input schema / properties / elements / items / descriptionAdded value: +"Per-type required fields: rectangle/ellipse/diamond → x, y (width/height default to 100). text → x, y, text (width/height auto-sized; omit or set to 0). arrow/line → x, y, points (e.g. [[0,0],[100,0]]); optionally startBinding/endBinding instead of points. image → x, y, width, height, fileId. freedraw → x, y, points. type is inferred from fields if omitted (text field → text, points → line, fileId → image, else rectangle)." - changed
Input schema / properties / elements / items / properties / containerId / descriptionPrevious value: -"Container element ID (for text bound to shapes). Set x,y to 0,0 for auto-centering"New value: +"For type=text: ID of the shape this text is bound to. Set x,y to 0,0 for auto-centering inside the shape." - changed
Input schema / properties / elements / items / properties / endBinding / descriptionPrevious value: -"For arrows: bind end point to a shape."New value: +"For type=arrow: binds the arrow end to a shape. Use instead of or alongside points." - added
Input schema / properties / elements / items / properties / endBinding / requiredAdded value: +[ + "elementId", + "focus", + "gap" +] - changed
Input schema / properties / elements / items / properties / fontFamily / descriptionPrevious value: -"Font family: 5=Excalifont, 6=Nunito, 7=Lilita One, 8=Comic Shanns (default: 5)"New value: +"Font family: 5=Excalifont, 6=Nunito, 7=Lilita One, 8=Comic Shanns (default: 5). Applies to text elements." - changed
Input schema / properties / elements / items / properties / fontSize / descriptionPrevious value: -"Font size (default: 20)"New value: +"Font size (default: 20). Applies to text elements." - changed
Input schema / properties / elements / items / properties / height / descriptionPrevious value: -"Height (default: 100)"New value: +"Height (default: 100; omit for text — auto-sized)" - changed
Input schema / properties / elements / items / properties / label / descriptionPrevious value: -"For arrows: text label displayed on the arrow"New value: +"For type=arrow: text label displayed on the arrow" - changed
Input schema / properties / elements / items / properties / points / descriptionPrevious value: -"Points array for arrows/lines. Relative to element x,y. Example: [[0,0],[0,100]] for vertical arrow"New value: +"Required for arrow/line/freedraw. Coordinates relative to element x,y. Example: [[0,0],[100,0]] for horizontal arrow." - changed
Input schema / properties / elements / items / properties / startBinding / descriptionPrevious value: -"For arrows: bind start point to a shape."New value: +"For type=arrow: binds the arrow start to a shape. Use instead of or alongside points." - added
Input schema / properties / elements / items / properties / startBinding / requiredAdded value: +[ + "elementId", + "focus", + "gap" +] - changed
Input schema / properties / elements / items / properties / text / descriptionPrevious value: -"Text content (for text elements)"New value: +"Text content. Required for type=text. Also used as arrow label when set on an arrow." - changed
Input schema / properties / elements / items / properties / type / descriptionPrevious value: -"Element type (e.g. rectangle, ellipse, diamond, arrow, line, freedraw, text, image)"New value: +"Element type. Inferred from fields if omitted: text field → text, points → line, fileId → image, else rectangle." - added
Input schema / properties / elements / items / properties / type / enumAdded value: +[ + "rectangle", + "ellipse", + "diamond", + "arrow", + "line", + "freedraw", + "text", + "image" +] - changed
Input schema / properties / elements / items / properties / width / descriptionPrevious value: -"Width (default: 100)"New value: +"Width (default: 100; omit for text — auto-sized)" - changed
Input schema / properties / elements / items / properties / x / descriptionPrevious value: -"X coordinate"New value: +"X coordinate (defaults to 0 if omitted)" - changed
Input schema / properties / elements / items / properties / y / descriptionPrevious value: -"Y coordinate"New value: +"Y coordinate (defaults to 0 if omitted)" - changed
Input schema / properties / elements / items / requiredPrevious value: -[ - "type", - "x", - "y" -]New value: +[ + "x", + "y" +]
- Changed
update_elements13 fields changed- added
Input schema / properties / elements / items / descriptionAdded value: +"Patch object: only id is required. Include only the fields you want to change." - changed
Input schema / properties / elements / items / properties / backgroundColor / descriptionPrevious value: -"New fill color"New value: +"New fill color (hex or 'transparent')" - changed
Input schema / properties / elements / items / properties / fillStyle / descriptionPrevious value: -"New fill style"New value: +"New fill style (solid, hachure, cross-hatch)" - changed
Input schema / properties / elements / items / properties / fontSize / descriptionPrevious value: -"New font size"New value: +"New font size (for text elements)" - changed
Input schema / properties / elements / items / properties / id / descriptionPrevious value: -"Element ID to update"New value: +"ID of the element to update (required)" - added
Input schema / properties / elements / items / properties / lockedAdded value: +{ + "description": "Lock/unlock the element", + "type": "boolean" +} - changed
Input schema / properties / elements / items / properties / opacity / descriptionPrevious value: -"New opacity"New value: +"New opacity (0-100)" - changed
Input schema / properties / elements / items / properties / points / descriptionPrevious value: -"New points array"New value: +"New points array (for arrow/line/freedraw elements)" - changed
Input schema / properties / elements / items / properties / roughness / descriptionPrevious value: -"New roughness"New value: +"New roughness (0=architect, 1=artist, 2=cartoonist)" - changed
Input schema / properties / elements / items / properties / strokeColor / descriptionPrevious value: -"New stroke color"New value: +"New stroke color (hex)" - changed
Input schema / properties / elements / items / properties / text / descriptionPrevious value: -"New text content"New value: +"New text content (for text elements or arrow labels)" - changed
Input schema / properties / elements / items / properties / type / descriptionPrevious value: -"New element type (e.g. rectangle, ellipse, diamond, arrow, line, freedraw, text, image)"New value: +"New element type" - added
Input schema / properties / elements / items / properties / type / enumAdded value: +[ + "rectangle", + "ellipse", + "diamond", + "arrow", + "line", + "freedraw", + "text", + "image" +]
4 tool updates
- Changed
add_elements7 fields changed- added
Output schema / properties / appState / additionalPropertiesAdded value: +true - changed
Output schema / properties / appState / descriptionPrevious value: -"Current app state (viewBackgroundColor, etc.)"New value: +"Canvas app state (viewBackgroundColor, etc.)" - added
Output schema / properties / appState / propertiesAdded value: +{ + "viewBackgroundColor": { + "type": "string" + } +} - changed
Output schema / properties / elements / descriptionPrevious value: -"Current scene elements for inline SVG rendering"New value: +"All elements currently on the canvas" - added
Output schema / properties / elements / itemsAdded value: +{ + "additionalProperties": true, + "type": "object" +} - removed
Output schema / properties / pendingMermaidRemoved value: -{ - "description": "Mermaid definition to be rendered client-side", - "type": "object" -} - added
Output schema / requiredAdded value: +[ + "url", + "isNew", + "collabUrl", + "elements", + "appState" +]
- Changed
add_elements_from_mermaid8 fields changed- added
Output schema / properties / appState / additionalPropertiesAdded value: +true - changed
Output schema / properties / appState / descriptionPrevious value: -"Current app state (viewBackgroundColor, etc.)"New value: +"Canvas app state (viewBackgroundColor, etc.)" - added
Output schema / properties / appState / propertiesAdded value: +{ + "viewBackgroundColor": { + "type": "string" + } +} - changed
Output schema / properties / elements / descriptionPrevious value: -"Current scene elements for inline SVG rendering"New value: +"All elements currently on the canvas" - added
Output schema / properties / elements / itemsAdded value: +{ + "additionalProperties": true, + "type": "object" +} - changed
Output schema / properties / pendingMermaid / descriptionPrevious value: -"Mermaid definition to be rendered client-side"New value: +"Mermaid definition pending client-side rendering" - added
Output schema / properties / pendingMermaid / propertiesAdded value: +{ + "config": { + "additionalProperties": true, + "type": "object" + }, + "definition": { + "description": "Mermaid diagram source", + "type": "string" + } +} - added
Output schema / requiredAdded value: +[ + "url", + "isNew", + "collabUrl", + "elements", + "appState" +]
- Changed
delete_elements7 fields changed- added
Output schema / properties / appState / additionalPropertiesAdded value: +true - changed
Output schema / properties / appState / descriptionPrevious value: -"Current app state (viewBackgroundColor, etc.)"New value: +"Canvas app state (viewBackgroundColor, etc.)" - added
Output schema / properties / appState / propertiesAdded value: +{ + "viewBackgroundColor": { + "type": "string" + } +} - changed
Output schema / properties / elements / descriptionPrevious value: -"Current scene elements for inline SVG rendering"New value: +"All elements currently on the canvas" - added
Output schema / properties / elements / itemsAdded value: +{ + "additionalProperties": true, + "type": "object" +} - removed
Output schema / properties / pendingMermaidRemoved value: -{ - "description": "Mermaid definition to be rendered client-side", - "type": "object" -} - added
Output schema / requiredAdded value: +[ + "url", + "isNew", + "collabUrl", + "elements", + "appState" +]
- Changed
update_elements7 fields changed- added
Output schema / properties / appState / additionalPropertiesAdded value: +true - changed
Output schema / properties / appState / descriptionPrevious value: -"Current app state (viewBackgroundColor, etc.)"New value: +"Canvas app state (viewBackgroundColor, etc.)" - added
Output schema / properties / appState / propertiesAdded value: +{ + "viewBackgroundColor": { + "type": "string" + } +} - changed
Output schema / properties / elements / descriptionPrevious value: -"Current scene elements for inline SVG rendering"New value: +"All elements currently on the canvas" - added
Output schema / properties / elements / itemsAdded value: +{ + "additionalProperties": true, + "type": "object" +} - removed
Output schema / properties / pendingMermaidRemoved value: -{ - "description": "Mermaid definition to be rendered client-side", - "type": "object" -} - added
Output schema / requiredAdded value: +[ + "url", + "isNew", + "collabUrl", + "elements", + "appState" +]
4 tool updates
- Changed
add_elements14 fields changed- changed
Input schema / properties / elements / items / properties / endBinding / descriptionPrevious value: -"For arrows: bind end point to a shape. REQUIRED for connected diagrams!"New value: +"For arrows: bind end point to a shape." - removed
Input schema / properties / elements / items / properties / endBinding / properties / elementId / descriptionRemoved value: -"ID of shape to connect to (REQUIRED)" - removed
Input schema / properties / elements / items / properties / endBinding / properties / focus / descriptionRemoved value: -"Position on edge: -1 to 1, 0=center (REQUIRED, use 0)" - removed
Input schema / properties / elements / items / properties / endBinding / properties / gap / descriptionRemoved value: -"Gap from shape edge in pixels (REQUIRED, use 8)" - removed
Input schema / properties / elements / items / properties / endBinding / requiredRemoved value: -[ - "elementId", - "focus", - "gap" -] - removed
Input schema / properties / elements / items / properties / lockedRemoved value: -{ - "description": "Lock element (default: false)", - "type": "boolean" -} - changed
Input schema / properties / elements / items / properties / startBinding / descriptionPrevious value: -"For arrows: bind start point to a shape. REQUIRED for connected diagrams!"New value: +"For arrows: bind start point to a shape." - removed
Input schema / properties / elements / items / properties / startBinding / properties / elementId / descriptionRemoved value: -"ID of shape to connect to (REQUIRED)" - removed
Input schema / properties / elements / items / properties / startBinding / properties / focus / descriptionRemoved value: -"Position on edge: -1 to 1, 0=center (REQUIRED, use 0)" - removed
Input schema / properties / elements / items / properties / startBinding / properties / gap / descriptionRemoved value: -"Gap from shape edge in pixels (REQUIRED, use 8)" - removed
Input schema / properties / elements / items / properties / startBinding / requiredRemoved value: -[ - "elementId", - "focus", - "gap" -] - changed
Input schema / properties / elements / items / properties / type / descriptionPrevious value: -"Element type"New value: +"Element type (e.g. rectangle, ellipse, diamond, arrow, line, freedraw, text, image)" - removed
Input schema / properties / elements / items / properties / type / enumRemoved value: -[ - "rectangle", - "ellipse", - "diamond", - "arrow", - "line", - "freedraw", - "text", - "image" -] - removed
Input schema / properties / timeoutRemoved value: -{ - "default": 3600, - "description": "Room lifetime in seconds (default: 3600, max: 86400). Only used when creating new canvas", - "type": "number" -}
- Changed
get_guide1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "properties": { + "guide": { + "description": "Tool usage instructions text", + "type": "string" + } + }, + "required": [ + "guide" + ], + "type": "object" +}
- Changed
query_elements1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "properties": { + "count": { + "description": "Number of matching elements", + "type": "number" + }, + "elements": { + "description": "Matching elements", + "type": "array" + } + }, + "required": [ + "count", + "elements" + ], + "type": "object" +}
- Changed
update_elements3 fields changed- removed
Input schema / properties / elements / items / properties / lockedRemoved value: -{ - "description": "Lock/unlock element", - "type": "boolean" -} - changed
Input schema / properties / elements / items / properties / type / descriptionPrevious value: -"New element type"New value: +"New element type (e.g. rectangle, ellipse, diamond, arrow, line, freedraw, text, image)" - removed
Input schema / properties / elements / items / properties / type / enumRemoved value: -[ - "rectangle", - "ellipse", - "diamond", - "arrow", - "line", - "freedraw", - "text", - "image" -]
1 tool update
- Changed
add_elements_from_mermaid1 field changed- changed
Input schema / properties / mermaid / descriptionPrevious value: -"Mermaid diagram definition (flowchart, sequence, or class diagram)"New value: +"Mermaid diagram definition. Prefer converting compatible user requests into Mermaid instead of using add_elements."
1 tool update
- Changed
add_elements_from_mermaid5 fields changed- changed
Input schema / properties / config / descriptionPrevious value: -"Optional Mermaid configuration"New value: +"Optional Mermaid rendering config. flowchart.curve is handled automatically." - changed
Input schema / properties / config / properties / flowchart / properties / curve / descriptionPrevious value: -"Curve style for flowchart edges (default: linear)"New value: +"Edge curve style (handled server-side; no need to set explicitly)." - changed
Input schema / properties / config / properties / flowchart / properties / curve / enumPrevious value: -[ - "linear", - "basis" -]New value: +[ + "basis", + "linear" +] - removed
Input schema / properties / config / properties / maxEdgesRemoved value: -{ - "description": "Maximum number of edges to render (default: 1000)", - "type": "number" -} - removed
Input schema / properties / config / properties / maxTextSizeRemoved value: -{ - "description": "Maximum text size (default: 1000)", - "type": "number" -}
6 tool updates
- Removed
align_elements - Removed
distribute_elements - Removed
group_elements - Removed
lock_elements - Removed
ungroup_elements - Removed
unlock_elements
1 tool update
- Changed
add_elements6 fields changed- changed
Input schema / properties / elements / items / properties / endBinding / properties / focus / descriptionPrevious value: -"Position on edge: -1 to 1, 0=center (default: 0)"New value: +"Position on edge: -1 to 1, 0=center (REQUIRED, use 0)" - changed
Input schema / properties / elements / items / properties / endBinding / properties / gap / descriptionPrevious value: -"Gap from shape edge in pixels (default: 8)"New value: +"Gap from shape edge in pixels (REQUIRED, use 8)" - added
Input schema / properties / elements / items / properties / endBinding / requiredAdded value: +[ + "elementId", + "focus", + "gap" +] - changed
Input schema / properties / elements / items / properties / startBinding / properties / focus / descriptionPrevious value: -"Position on edge: -1 to 1, 0=center (default: 0)"New value: +"Position on edge: -1 to 1, 0=center (REQUIRED, use 0)" - changed
Input schema / properties / elements / items / properties / startBinding / properties / gap / descriptionPrevious value: -"Gap from shape edge in pixels (default: 8)"New value: +"Gap from shape edge in pixels (REQUIRED, use 8)" - added
Input schema / properties / elements / items / properties / startBinding / requiredAdded value: +[ + "elementId", + "focus", + "gap" +]
2 tool updates
- Changed
add_elements1 field changed- changed
Input schema / properties / elements / items / properties / fontFamily / descriptionPrevious value: -"Font family: 1=Virgil, 2=Helvetica, 3=Cascadia (default: 1)"New value: +"Font family: 5=Excalifont, 6=Nunito, 7=Lilita One, 8=Comic Shanns (default: 5)"
- Changed
update_elements1 field changed- changed
Input schema / properties / elements / items / properties / fontFamily / descriptionPrevious value: -"New font family"New value: +"New font family (5=Excalifont, 6=Nunito, 7=Lilita One, 8=Comic Shanns)"
1 tool update
- Removed
get_image
12 tool updates
- Changed
add_elements4 fields changed- added
Output schema / properties / appStateAdded value: +{ + "description": "Current app state (viewBackgroundColor, etc.)", + "type": "object" +} - added
Output schema / properties / collabUrlAdded value: +{ + "description": "Collaboration server URL for Socket.IO", + "type": "string" +} - added
Output schema / properties / elementsAdded value: +{ + "description": "Current scene elements for inline SVG rendering", + "type": "array" +} - added
Output schema / properties / pendingMermaidAdded value: +{ + "description": "Mermaid definition to be rendered client-side", + "type": "object" +}
- Changed
add_elements_from_mermaid4 fields changed- added
Output schema / properties / appStateAdded value: +{ + "description": "Current app state (viewBackgroundColor, etc.)", + "type": "object" +} - added
Output schema / properties / collabUrlAdded value: +{ + "description": "Collaboration server URL for Socket.IO", + "type": "string" +} - added
Output schema / properties / elementsAdded value: +{ + "description": "Current scene elements for inline SVG rendering", + "type": "array" +} - added
Output schema / properties / pendingMermaidAdded value: +{ + "description": "Mermaid definition to be rendered client-side", + "type": "object" +}
- Changed
align_elements5 fields changed- changed
Input schema / properties / room_url / descriptionPrevious value: -"Room URL (from create_canvas) or room ID to operate on"New value: +"Canvas URL from create_canvas (e.g. https://canvs.io/?room=XXXX) or a Google Drive board URL (e.g. https://canvs.io/gdrive?id=FILE_ID)" - added
Output schema / properties / appStateAdded value: +{ + "description": "Current app state (viewBackgroundColor, etc.)", + "type": "object" +} - added
Output schema / properties / collabUrlAdded value: +{ + "description": "Collaboration server URL for Socket.IO", + "type": "string" +} - added
Output schema / properties / elementsAdded value: +{ + "description": "Current scene elements for inline SVG rendering", + "type": "array" +} - added
Output schema / properties / pendingMermaidAdded value: +{ + "description": "Mermaid definition to be rendered client-side", + "type": "object" +}
- Changed
delete_elements5 fields changed- changed
Input schema / properties / room_url / descriptionPrevious value: -"Room URL (from create_canvas) or room ID to operate on"New value: +"Canvas URL from create_canvas (e.g. https://canvs.io/?room=XXXX) or a Google Drive board URL (e.g. https://canvs.io/gdrive?id=FILE_ID)" - added
Output schema / properties / appStateAdded value: +{ + "description": "Current app state (viewBackgroundColor, etc.)", + "type": "object" +} - added
Output schema / properties / collabUrlAdded value: +{ + "description": "Collaboration server URL for Socket.IO", + "type": "string" +} - added
Output schema / properties / elementsAdded value: +{ + "description": "Current scene elements for inline SVG rendering", + "type": "array" +} - added
Output schema / properties / pendingMermaidAdded value: +{ + "description": "Mermaid definition to be rendered client-side", + "type": "object" +}
- Changed
distribute_elements5 fields changed- changed
Input schema / properties / room_url / descriptionPrevious value: -"Room URL (from create_canvas) or room ID to operate on"New value: +"Canvas URL from create_canvas (e.g. https://canvs.io/?room=XXXX) or a Google Drive board URL (e.g. https://canvs.io/gdrive?id=FILE_ID)" - added
Output schema / properties / appStateAdded value: +{ + "description": "Current app state (viewBackgroundColor, etc.)", + "type": "object" +} - added
Output schema / properties / collabUrlAdded value: +{ + "description": "Collaboration server URL for Socket.IO", + "type": "string" +} - added
Output schema / properties / elementsAdded value: +{ + "description": "Current scene elements for inline SVG rendering", + "type": "array" +} - added
Output schema / properties / pendingMermaidAdded value: +{ + "description": "Mermaid definition to be rendered client-side", + "type": "object" +}
- Changed
get_image1 field changed- changed
Input schema / properties / room_url / descriptionPrevious value: -"Room URL (from create_canvas) or room ID to operate on"New value: +"Canvas URL from create_canvas (e.g. https://canvs.io/?room=XXXX) or a Google Drive board URL (e.g. https://canvs.io/gdrive?id=FILE_ID)"
- Changed
group_elements5 fields changed- changed
Input schema / properties / room_url / descriptionPrevious value: -"Room URL (from create_canvas) or room ID to operate on"New value: +"Canvas URL from create_canvas (e.g. https://canvs.io/?room=XXXX) or a Google Drive board URL (e.g. https://canvs.io/gdrive?id=FILE_ID)" - added
Output schema / properties / appStateAdded value: +{ + "description": "Current app state (viewBackgroundColor, etc.)", + "type": "object" +} - added
Output schema / properties / collabUrlAdded value: +{ + "description": "Collaboration server URL for Socket.IO", + "type": "string" +} - added
Output schema / properties / elementsAdded value: +{ + "description": "Current scene elements for inline SVG rendering", + "type": "array" +} - added
Output schema / properties / pendingMermaidAdded value: +{ + "description": "Mermaid definition to be rendered client-side", + "type": "object" +}
- Changed
lock_elements5 fields changed- changed
Input schema / properties / room_url / descriptionPrevious value: -"Room URL (from create_canvas) or room ID to operate on"New value: +"Canvas URL from create_canvas (e.g. https://canvs.io/?room=XXXX) or a Google Drive board URL (e.g. https://canvs.io/gdrive?id=FILE_ID)" - added
Output schema / properties / appStateAdded value: +{ + "description": "Current app state (viewBackgroundColor, etc.)", + "type": "object" +} - added
Output schema / properties / collabUrlAdded value: +{ + "description": "Collaboration server URL for Socket.IO", + "type": "string" +} - added
Output schema / properties / elementsAdded value: +{ + "description": "Current scene elements for inline SVG rendering", + "type": "array" +} - added
Output schema / properties / pendingMermaidAdded value: +{ + "description": "Mermaid definition to be rendered client-side", + "type": "object" +}
- Changed
query_elements1 field changed- changed
Input schema / properties / room_url / descriptionPrevious value: -"Room URL (from create_canvas) or room ID to operate on"New value: +"Canvas URL from create_canvas (e.g. https://canvs.io/?room=XXXX) or a Google Drive board URL (e.g. https://canvs.io/gdrive?id=FILE_ID)"
- Changed
ungroup_elements5 fields changed- changed
Input schema / properties / room_url / descriptionPrevious value: -"Room URL (from create_canvas) or room ID to operate on"New value: +"Canvas URL from create_canvas (e.g. https://canvs.io/?room=XXXX) or a Google Drive board URL (e.g. https://canvs.io/gdrive?id=FILE_ID)" - added
Output schema / properties / appStateAdded value: +{ + "description": "Current app state (viewBackgroundColor, etc.)", + "type": "object" +} - added
Output schema / properties / collabUrlAdded value: +{ + "description": "Collaboration server URL for Socket.IO", + "type": "string" +} - added
Output schema / properties / elementsAdded value: +{ + "description": "Current scene elements for inline SVG rendering", + "type": "array" +} - added
Output schema / properties / pendingMermaidAdded value: +{ + "description": "Mermaid definition to be rendered client-side", + "type": "object" +}
- Changed
unlock_elements5 fields changed- changed
Input schema / properties / room_url / descriptionPrevious value: -"Room URL (from create_canvas) or room ID to operate on"New value: +"Canvas URL from create_canvas (e.g. https://canvs.io/?room=XXXX) or a Google Drive board URL (e.g. https://canvs.io/gdrive?id=FILE_ID)" - added
Output schema / properties / appStateAdded value: +{ + "description": "Current app state (viewBackgroundColor, etc.)", + "type": "object" +} - added
Output schema / properties / collabUrlAdded value: +{ + "description": "Collaboration server URL for Socket.IO", + "type": "string" +} - added
Output schema / properties / elementsAdded value: +{ + "description": "Current scene elements for inline SVG rendering", + "type": "array" +} - added
Output schema / properties / pendingMermaidAdded value: +{ + "description": "Mermaid definition to be rendered client-side", + "type": "object" +}
- Changed
update_elements5 fields changed- changed
Input schema / properties / room_url / descriptionPrevious value: -"Room URL (from create_canvas) or room ID to operate on"New value: +"Canvas URL from create_canvas (e.g. https://canvs.io/?room=XXXX) or a Google Drive board URL (e.g. https://canvs.io/gdrive?id=FILE_ID)" - added
Output schema / properties / appStateAdded value: +{ + "description": "Current app state (viewBackgroundColor, etc.)", + "type": "object" +} - added
Output schema / properties / collabUrlAdded value: +{ + "description": "Collaboration server URL for Socket.IO", + "type": "string" +} - added
Output schema / properties / elementsAdded value: +{ + "description": "Current scene elements for inline SVG rendering", + "type": "array" +} - added
Output schema / properties / pendingMermaidAdded value: +{ + "description": "Mermaid definition to be rendered client-side", + "type": "object" +}
1 tool update
- Changed
ungroup_elements3 fields changed- added
Input schema / properties / elementIdsAdded value: +{ + "description": "Array of element IDs to ungroup", + "items": { + "type": "string" + }, + "type": "array" +} - removed
Input schema / properties / groupIdRemoved value: -{ - "description": "Group ID to ungroup", - "type": "string" -} - changed
Input schema / requiredPrevious value: -[ - "room_url", - "groupId" -]New value: +[ + "room_url", + "elementIds" +]
13 tool updates
- First observed
add_elements - First observed
add_elements_from_mermaid - First observed
align_elements - First observed
delete_elements - First observed
distribute_elements - First observed
get_guide - First observed
get_image - First observed
group_elements - First observed
lock_elements - First observed
query_elements - First observed
ungroup_elements - First observed
unlock_elements - First observed
update_elements
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
Visual AI for strategic thinking — SWOT, flowcharts, mindmaps, Gantt diagrams as polished SVG.
- UnpagedOAuthio.unpaged
Whiteboard where any shape opens into another canvas. Your AI agent draws on it live.
Generate, edit, and manage Eraser diagrams and docs with AI.
Generate dynamic Mermaid diagrams and charts with AI assistance. Customize styles and export diagr…
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceCreate visual whiteboards, diagrams, flowcharts, and project plans from AI conversations. 17 MCP tools for board management, element creation, and real-time collaboration.1MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to collaboratively read, write, draw, and diagram on a shared real-time whiteboard canvas with live human edits.1MIT
- FlicenseNot gradedqualityDmaintenanceProvides 15 types of chart generation tools (line, bar, pie, radar, word cloud, mind map, etc.) with AI-powered intelligent color schemes and elegant design.1-
- AlicenseNot gradedqualityCmaintenanceLets AI coding agents generate editable hand-drawn diagrams directly in CodePic, with support for templates and iterative updates.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a clear, distinct purpose: add_elements for manual creation, add_elements_from_mermaid for Mermaid-based creation, delete/query/update for lifecycle operations, and get_guide for workflow guidance. The overlap between the two creation tools is explicitly resolved in descriptions, leaving no ambiguity.
All tool names follow a consistent verb_noun pattern: add_elements, add_elements_from_mermaid, delete_elements, get_guide, query_elements, update_elements. The modifier 'from_mermaid' extends the base pattern without breaking consistency, and all verbs are clear (add, delete, get, query, update).
With 6 tools, the set is well-scoped for a canvas/diagram server, covering creation, query, update, delete, and guidance. This is within the ideal 3-15 range, and each tool earns its place without redundancy or bloat.
The toolset provides solid CRUD coverage for canvas elements (add, query, update, delete) plus a Mermaid import option and usage guidance. A minor gap is that there is no explicit tool to list existing canvases/rooms; agents must rely on prior room_id, which could be a friction point in new sessions, but core workflows are fully supported.