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 uses | 10,239 | — |
| Score | 84 | 38 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM Toolsgovernment |
| Language | TypeScript | TypeScript |
| Last commit | this month | 12 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-chartFor 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
- Install dependencies:
npm install- Set up your API key:
Create a .env file with:
CONGRESS_GOV_API_KEY=YOUR_API_KEY_HERE- Build the server:
npm run build- Run the server:
npm startClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"congress-gov": {
"command": "node",
"args": ["dist/server.js"]
}
}
}