llms-txt-generator vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
llms-txt-generator by aircodelabs | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 18 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 40 | 84 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | JavaScript | TypeScript |
| Last commit | 11 mo ago | this month |
llms-txt-generator · Summary
AI-powered generator for llms.txt and llms-full.txt files with MCP server integration.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
llms-txt-generator · Use cases
- Automatically generate AI-optimized documentation for new or existing code projects
- Integrate MCP server functionality to enable AI assistants to create documentation directly
- Standardize documentation format across multiple projects for consistent AI understanding
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
llms-txt-generator · Install
Installation
CLI Installation
# Install globally
npm install -g llms-txt-generator
# Or use npx
npx llms-txt-generator init
npx llms-txt-generator buildMCP Server Integration
For Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"llms-generator": {
"command": "npx",
"args": ["-y", "llms-txt-generator-mcp"]
}
}
}For Cursor, add to your cursor-settings.json:
{
"mcpServers": {
"llms-generator": {
"command": "npx",
"args": ["-y", "llms-txt-generator-mcp"]
}
}
}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"]
}
}
}