← cnvs.app

INDIVIDUAL MCP TOOL

get_preview

Compact schematic SVG render of the board (typically a few kB even for dense boards).

cnvs.appnone authenticationAvailability not checked

Input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent endpoint

cnvs.app

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.cnvs-mcp]
url = "https://cnvs.app/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "cnvs-mcp": {
      "type": "http",
      "url": "https://cnvs.app/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: cnvs-mcp
Remote MCP URL: https://cnvs.app/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "cnvs-mcp": {
      "url": "https://cnvs.app/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "cnvs-mcp": {
      "type": "http",
      "url": "https://cnvs.app/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "cnvs-mcp",
  "transport": "streamable-http",
  "url": "https://cnvs.app/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • open_board — ALWAYS call this first when given a board URL or ID.
  • create_board — Create a fresh board in ONE call — optionally pre-filled with content, auto-laid-out, and/or PIN-locked at create time.
  • get_board — Full structured JSON state of a board: texts (id, x, y, content, color, width, postit, author), strokes (id, points, color, author), images (id, x, y, width, height, dataUrl, thumbDataUrl, author; heavy base64 >8 kB elided to dataUrl:null, tiny images inlined).
  • add_text — Create a NEW text node, or update an existing one (pass the same `id` to overwrite content/position in place — preferred over creating a duplicate).
  • add_link — Drop a URL capsule onto the board — rendered as a clickable pill showing the hostname.
  • add_image — Place a raster or SVG image on the board at (x, y) with explicit width/height in board pixels.
  • draw_stroke — Draw a freehand stroke on the board.
  • move — Reposition an existing item to a new (x, y) without retyping its content.