MCP Catalogs
Home

servicenow-mcp vs mcp-server-chart

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

servicenow-mcp
by aartiq
mcp-server-chart
by antvis
Stars★ 23★ 4,068
30d uses10,239
Score4584
Official
Categories
Developer ToolsAI / LLM ToolsOps & Infra
AI / LLM ToolsDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit3 mo agothis month

servicenow-mcp · Summary

Comprehensive MCP server for ServiceNow with 400+ tools across all modules, supporting OAuth authentication and role-based tool packages.

mcp-server-chart · Summary

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

servicenow-mcp · Use cases

  • Automate incident management and service desk operations through natural language queries
  • Develop, deploy and test ServiceNow scripts and business rules using AI assistance
  • Manage and compare multiple ServiceNow instances across dev, staging and production environments

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

servicenow-mcp · Install

Installation

  1. Install the server package:
npm install -g @aartiq/servicenow-mcp
  1. Configure your ServiceNow instance credentials and permissions:
export SERVICENOW_INSTANCE=your_instance
export SERVICENOW_USERNAME=your_username
export SERVICENOW_PASSWORD=your_password
export WRITE_ENABLED=true  # Optional: enable write operations
  1. Add to Claude Desktop configuration:
{
  "mcpServers": {
    "servicenow": {
      "command": "npx",
      "args": ["-y", "@aartiq/servicenow-mcp"]
    }
  }
}
  1. For OAuth authentication in production, follow the setup guide in [docs/SERVICENOW_OAUTH_SETUP.md](docs/SERVICENOW_OAUTH_SETUP.md)

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.