mcp-server-chart vs mcp-annotated-java-sdk
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-annotated-java-sdk by thought2code | |
|---|---|---|
| Stars | ★ 4,068 | ★ 29 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | Java |
| 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.
mcp-annotated-java-sdk · Summary
Annotation-driven MCP Java SDK for simplified MCP server development with zero boilerplate.
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-annotated-java-sdk · Use cases
- Developing MCP servers for Java-based AI applications with minimal setup
- Creating type-safe MCP tools, resources, and prompts without JSON schemas
- Building multilingual MCP servers with built-in i18n support
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-annotated-java-sdk · Install
Installation
Maven
<dependency>
<groupId>io.github.thought2code</groupId>
<artifactId>mcp-annotated-java-sdk</artifactId>
<version>0.14.0</version>
</dependency>Gradle
implementation 'io.github.thought2code:mcp-annotated-java-sdk:0.14.0'Configuration
Create mcp-server.yml in your classpath:
enabled: true
mode: STREAMABLE
name: my-mcp-server
version: 1.0.0
type: SYNC
instructions: You are a helpful AI assistant
request-timeout: 20000
capabilities:
resource: true
prompt: true
tool: true
change-notification:
resource: true
prompt: true
tool: trueClaude Desktop Configuration
To use this MCP server with Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"my-java-mcp": {
"command": "java",
"args": ["-jar", "path/to/your/mcp-server.jar"]
}
}
}