mcp-server-chart vs fhir-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | fhir-mcp-server by the-momentum | |
|---|---|---|
| Stars | ★ 4,068 | ★ 80 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | healthcareAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 7 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
fhir-mcp-server · Summary
A production-ready MCP server for FHIR healthcare data integration with Claude Desktop.
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
fhir-mcp-server · Use cases
- Query patient health records using natural language prompts
- Process and search medical documents with AI-powered chunking
- Generate synthetic FHIR test data for development and validation
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"]
}
}
}fhir-mcp-server · Install
Installation
- Clone the repository:
``sh git clone https://github.com/the-momentum/fhir-mcp-server cd fhir-mcp-server ``
- Set up environment variables:
``sh cp config/.env.example config/.env # Edit config/.env with your credentials ``
- Install Dependencies
```sh # Docker method make build
# uv method make uv ```
- Update Claude Desktop configuration (claude_desktop_config.json):
``json { "mcpServers": { "fhir-mcp-server": { "command": "docker", "args": [ "run", "-i", "--rm", "--init", "--name", "fhir-mcp-server", "--mount", "type=bind,source=<your-project-path>/app,target=/root_project/app", "--mount", "type=bind,source=<your-project-path>/config/.env,target=/root_project/config/.env", "-e", "TRANSPORT_MODE=stdio", "mcp-server:latest" ] } } } ``