mcp-server-chart vs First-MCP-Server-Project
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | First-MCP-Server-Project by burakarslan0110 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 0 |
| 30d uses | 10,239 | — |
| Score | 84 | 32 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | C# |
| Last commit | this month | 5 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
First-MCP-Server-Project · Summary
A .NET 10 MCP server providing math and string processing tools for AI assistants.
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
First-MCP-Server-Project · Use cases
- Enable AI assistants to perform mathematical calculations without leaving the chat interface
- Provide text processing capabilities to AI for content analysis
- Demonstrate MCP server implementation in .NET for developers to build upon
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"]
}
}
}First-MCP-Server-Project · Install
Installation
- Install [.NET 10.0 SDK](https://dotnet.microsoft.com/download/dotnet/10.0)
- Clone the repository:
git clone https://github.com/burakarslan0110/First-MCP-Server-Project.git - Navigate to the project directory:
cd First-MCP-Server-Project - Restore dependencies:
dotnet restore - Build the project:
dotnet build
Usage
- Run the server:
dotnet run --project First-MCP-Server-Project - Configure your AI assistant (e.g., Claude Desktop) to connect to this MCP server:
{
"mcpServers": {
"first-mcp-server": {
"command": "dotnet",
"args": ["run", "--project", "PATH_TO_PROJECT"]
}
}
}