servicenow-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
servicenow-mcp by aartiq | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 23 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOps & Infra | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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)
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything