servicenow-mcp vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
servicenow-mcp by aartiq | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 23 | ★ 149 |
| 30d uses | — | — |
| Score | 45 | 85 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsOps & Infra | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | 3 mo ago | 2 mo ago |
servicenow-mcp · Summary
Comprehensive MCP server for ServiceNow with 400+ tools across all modules, supporting OAuth authentication and role-based tool packages.
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
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
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
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)
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_server