MCP Catalogs
Home

mcp-server-chart vs framesmith

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-chart
by antvis
framesmith
by RobDavenport
Stars★ 4,068★ 1
30d uses10,239
Score8434
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsMedia
LanguageTypeScriptRust
Last committhis month3 mo ago

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

framesmith · Summary

Fighting game character editor with MCP server for LLM-assisted workflows

mcp-server-chart · Use cases

  • Data analysts creating visual reports from datasets
  • AI assistants generating custom charts based on user requests
  • Web applications embedding visualization capabilities via HTTP API

framesmith · Use cases

  • LLM-assisted fighting game character creation and balancing
  • Automated character data validation and optimization
  • Integration with fighting game development pipelines via MCP

mcp-server-chart · Install

Installation

Install globally:

npm install -g @antv/mcp-server-chart

For Desktop Apps (e.g., Claude Desktop, VSCode):

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "npx",
      "args": ["-y", "@antv/mcp-server-chart"]
    }
  }
}

For Windows:

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
    }
  }
}

framesmith · Install

Install Framesmith:

npm install
npm run tauri dev

Start the MCP server:

cd src-tauri
cargo run --bin mcp -- --characters-dir ../characters

For Claude Desktop integration, add to claude_desktop_config.json:

{
  "mcpServers": {
    "framesmith": {
      "command": "cargo",
      "args": ["run", "--bin", "mcp", "--", "--characters-dir", "../characters"],
      "cwd": "${your_framesmith_project}/src-tauri"
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.