mcp-server-chart vs MCP-PDF-Extractor-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | MCP-PDF-Extractor-server by RayenMalouche | |
|---|---|---|
| Stars | ★ 4,068 | ★ 0 |
| 30d uses | 10,239 | — |
| Score | 84 | 33 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | File SystemDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Java |
| Last commit | this month | 9 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-PDF-Extractor-server · Summary
Java-based MCP server using Apache Tika to extract content and metadata from PDFs, DOCX and other documents.
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-PDF-Extractor-server · Use cases
- Processing and extracting content from local documents in secure environments without internet access
- Integrating document extraction capabilities into MCP-enabled AI assistants like Claude Desktop
- Providing a REST API for web applications to serve styled HTML content from document files
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-PDF-Extractor-server · Install
Installation
- **Prerequisites**:
- Java 23+ - Maven 3.6+
- **Clone and Setup**:
``bash git clone https://github.com/RayenMalouche/MCP-PDF-Extractor-server.git cd MCP-PDF-Extractor-server mkdir files-to-extract mvn clean install ``
- **Configure**:
Edit src/main/resources/application.properties if needed
- **Run**:
```bash # HTTP/SSE mode mvn spring-boot:run
# STDIO mode mvn spring-boot:run -- --stdio ```
- **Configure Claude Desktop** (for MCP usage):
Add to your claude_desktop_config.json: ``json { "mcpServers": { "tika-extractor": { "command": "java", "args": ["-jar", "path/to/your/target/TikaExtractorMCPServer-1.0.0.jar", "--stdio"] } } } ``