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 wso2 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 119 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM Toolshealthcare |
| Language | TypeScript | Python |
| Last commit | this month | this month |
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
FHIR MCP Server bridges healthcare FHIR APIs with AI tools via MCP protocol, enabling secure clinical data access.
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
- AI assistants accessing patient records through FHIR APIs in clinical settings
- Healthcare analytics systems integrating clinical data with LLM-powered insights
- Medical research tools querying FHIR repositories for patient cohorts and clinical data
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 Options
- **Using PyPI Package:**
```bash # Configure environment variables export FHIR_SERVER_BASE_URL="your_fhir_server_url" export FHIR_SERVER_CLIENT_ID="your_client_id" export FHIR_SERVER_CLIENT_SECRET="your_client_secret" export FHIR_SERVER_SCOPES="your_scopes"
# Install and run uvx fhir-mcp-server ```
- **Using Docker:**
``bash docker pull wso2/fhir-mcp-server:latest docker run --env-file .env -p 8000:8000 fhir-mcp-server ``
- **From Source:**
``bash git clone <repository_url> cd <repository_directory> uv venv source .venv/bin/activate uv pip sync requirements.txt cp .env.example .env uv run fhir-mcp-server ``
**Claude Desktop Configuration:**
{
"mcpServers": {
"fhir": {
"command": "uv",
"args": [
"--directory",
"/path/to/fhir-mcp-server",
"run",
"fhir-mcp-server",
"--transport",
"stdio"
],
"env": {
"FHIR_SERVER_ACCESS_TOKEN": "Your FHIR Access Token"
}
}
}
}