MCP Catalogs
Home

roo-logger vs mcp-server-chart

Side-by-side comparison to help you pick between these two MCP servers.

roo-logger
by annenpolka
mcp-server-chart
by antvis
Stars★ 24★ 4,068
30d uses10,239
Score4084
Official
Categories
Developer ToolsProductivityAI / LLM Tools
AI / LLM ToolsDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit9 mo agothis month

roo-logger · Summary

An MCP server that automatically logs AI coding assistant activities like command executions and code generation.

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

roo-logger · Use cases

  • Tracking and analyzing AI coding assistant activities for productivity analysis
  • Restoring context when resuming interrupted development tasks
  • Creating audit trails of code generation and file modifications

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

roo-logger · Install

Installation

Via npx (Recommended)

Add the following to your Cline, Roo-Code, or Claude Code configuration:

{
  "mcpServers": {
    "roo-activity-logger": {
      "command": "npx",
      "args": ["-y", "github:annenpolka/roo-logger"],
      "env": {},
      "disabled": false
    }
  }
}

Local Development

git clone https://github.com/annenpolka/roo-logger.git
cd roo-logger
npm install
npm run build

Then configure to use the local build:

{
  "mcpServers": {
    "roo-activity-logger": {
      "command": "node",
      "args": ["/path/to/your/local/roo-logger/dist/index.js"],
      "env": {},
      "disabled": false
    }
  }
}

mcp-server-chart · Install

Installation

Install globally:

npm install -g @antv/mcp-server-chart

For 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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.