MCP Catalogs
Home

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
Score4577
Official
Categories
Developer ToolsAI / LLM ToolsOps & Infra
Developer ToolsAI / LLM ToolsOther
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.

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

  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)

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