mcp-server-chart vs laravel-loop
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | laravel-loop by kirschbaum-development | |
|---|---|---|
| Stars | ★ 4,068 | ★ 128 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | PHP |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
laravel-loop · Summary
Laravel Loop is an MCP server connecting Laravel applications with AI assistants via tools for models, factories, and Stripe integration.
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
laravel-loop · Use cases
- Interact with Laravel models directly from AI assistants
- Generate test data using Laravel factories through MCP clients
- Perform Stripe payment operations from AI coding assistants
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"]
}
}
}laravel-loop · Install
Installation
Install via Composer:
composer require kirschbaum-development/laravel-loopPublish configuration:
php artisan vendor:publish --tag="loop-config"Configuration
Register tools in app/Providers/AppServiceProvider:
use Illuminate\Support\ServiceProvider;
use Kirschbaum\Loop\Facades\Loop;
use Kirschbaum\Loop\Toolkits;
use Kirschbaum\Loop\Tools;
Loop::toolkit(Kirschbaum\Loop\Filament\FilamentToolkit::make());Connecting to MCP Server
STDIO Transport
Start the MCP server:
php artisan loop:mcp:start [--user-id=1 [--user-model=] [--auth-guard=] [--debug]]Configure Claude Code:
claude mcp add laravel-loop-mcp php /your/full/path/to/laravel/artisan loop:mcp:start --user-id=1JSON Configuration:
{
"mcpServers": {
"laravel-loop-mcp": {
"command": "php",
"args": [
"/your/full/path/to/laravel/artisan",
"loop:mcp:start",
"--user-id=1"
]
}
}
}