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 uses | — | 10,239 |
| Score | 45 | 84 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsOps & Infra | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 3 mo ago | this 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
- Install the server package:
npm install -g @aartiq/servicenow-mcp- 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- Add to Claude Desktop configuration:
{
"mcpServers": {
"servicenow": {
"command": "npx",
"args": ["-y", "@aartiq/servicenow-mcp"]
}
}
}- 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-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"]
}
}
}