← szum.io

INDIVIDUAL MCP TOOL

get_chart_config

Use this when the user identifies a saved chart by id and needs its complete published Szum config for inspection or reuse.

szum.ionone 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

szum.io

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.szum]
url = "https://szum.io/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "szum": {
      "type": "http",
      "url": "https://szum.io/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: szum
Remote MCP URL: https://szum.io/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": {
    "szum": {
      "url": "https://szum.io/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

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

Client-specific MCP configuration

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

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

Related tools

  • render_chart — Use this when the user wants to preview or generate a chart from a Szum config.
  • save_chart — Use this when the user wants to permanently save and publish a chart from a Szum config.
  • list_charts — Use this when the user wants to find charts in their saved library.
  • get_chart — Use this when the user identifies a saved chart by id and wants to view it or retrieve its metadata and URLs.
  • get_preview_state — Use this when the Szum chart App needs to restore a rendered preview as its current transient or saved view.
  • update_chart — Use this when the user wants to replace and publish a saved chart's config while keeping its id and URLs.
  • rename_chart — Use this when the user wants to change a saved chart's library title without changing its config, publication state, or public URLs; requires authentication.
  • delete_chart — Use this when the user explicitly wants to permanently delete one saved chart.