MCP Catalogs
Home

mcp-server-chart vs mcp-congress_gov_server

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

mcp-server-chart
by antvis
mcp-congress_gov_server
by bsmi021
Stars★ 4,068★ 8
30d uses10,239
Score8438
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM Toolsgovernment
LanguageTypeScriptTypeScript
Last committhis month12 mo ago

mcp-server-chart · Summary

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

mcp-congress_gov_server · Summary

MCP server providing access to U.S. Congress.gov legislative data through hybrid resources and tools.

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

mcp-congress_gov_server · Use cases

  • AI assistants needing to retrieve U.S. legislative information for policy analysis
  • Research applications tracking voting records and bill sponsorship patterns
  • Development tools requiring real-time access to congressional data for documentation or applications

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"]
    }
  }
}

mcp-congress_gov_server · Install

Installation

  1. Install dependencies:
npm install
  1. Set up your API key:

Create a .env file with:

CONGRESS_GOV_API_KEY=YOUR_API_KEY_HERE
  1. Build the server:
npm run build
  1. Run the server:
npm start

Claude Desktop Configuration

Add to your Claude Desktop config.json:

{
  "mcpServers": {
    "congress-gov": {
      "command": "node",
      "args": ["dist/server.js"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.