mcp-server-chart vs mcp-hosted
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-hosted by forcedotcom | |
|---|---|---|
| Stars | ★ 4,068 | ★ 109 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | — |
| Last commit | this month | 1 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-hosted · Summary
Salesforce's hosted MCP servers enable AI assistants to securely connect to Salesforce assets using the Model Context Protocol.
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-hosted · Use cases
- Connecting AI assistants to Salesforce data and business logic
- Enabling secure API access to Salesforce systems for AI applications
- Building custom MCP servers that integrate with Salesforce workflows
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-hosted · Install
Installation
Salesforce MCP servers are hosted and managed within the Salesforce platform. To configure:
- Navigate to Setup in your Salesforce org
- Find 'API Catalog' in the 'Platform Tools' section
- Select 'Manage MCP Servers'
- Enable the desired servers and configure authentication
For Claude Desktop, add to your config.json:
{
"mcpServers": {
"salesforce": {
"command": "npx",
"args": ["@salesforce/mcp-server", "--host", "your-domain.my.salesforce.com"]
}
}
}