ServiceNow MCP Server
Enables interaction with ServiceNow ITSM through browser-based SSO authentication, providing 80+ tools for incidents, changes, catalog, CMDB, and more via natural language.
README
ServiceNow MCP Server
A comprehensive Model Context Protocol (MCP) server for ServiceNow ITSM with browser-based SSO authentication support.
Perfect for enterprise environments - No API keys required. Works with Okta, Azure AD, and any SSO provider.
Features
- Browser Authentication: Log in via your enterprise SSO (Okta, Azure AD, etc.) - no API keys needed
- 80+ Tools: Incidents, Changes, Problems, Catalog, CMDB, Knowledge Base, Users, Approvals, and more
- Complete Request Type Coverage: Standard catalog items, Record Producers, Order Guides, and Content Items
- IT Service Portal Integration: Direct submission from ITSP URLs
- GraphQL & REST Support: Works with both ServiceNow APIs
- Session Management: Automatic cookie handling and refresh
Installation
NPM
npm install servicenow-mcp
Or install globally:
npm install -g servicenow-mcp
From Source
Linux/macOS:
git clone https://github.com/schwarztim/servicenow-mcp.git
cd servicenow-mcp
npm install
npm run build
Windows:
git clone https://github.com/schwarztim/servicenow-mcp.git
cd servicenow-mcp
.\scripts\install.ps1
📝 Windows Users: See WINDOWS.md for detailed Windows installation guide, including path configuration, PowerShell setup, and troubleshooting.
Authentication Methods
1. Browser SSO (Recommended for Enterprise)
Use the auth_browser tool from Claude:
> Use auth_browser to log into ServiceNow
A browser will open. Log in with your SSO credentials.
Cookies are automatically captured and saved.
Or from command line:
npm run auth https://yourinstance.service-now.com
2. Basic Auth (Username/Password)
Set environment variables:
export SERVICENOW_INSTANCE_URL="https://yourinstance.service-now.com"
export SERVICENOW_USERNAME="your-username"
export SERVICENOW_PASSWORD="your-password"
3. Session Token Auth
For GraphQL API access:
export SERVICENOW_INSTANCE_URL="https://yourinstance.service-now.com"
export SERVICENOW_SESSION_TOKEN="your-session-cookie"
export SERVICENOW_USER_TOKEN="your-g_ck-token"
Usage with Claude
After browser authentication:
> List open P1 incidents
> Show me change CHG0012345
> Create an incident for "Email server down"
> Search CMDB for servers in the Atlanta datacenter
IT Service Portal (ITSP) Workflows
Submit requests directly from portal URLs (auto-detects Standard/Producer/Guide):
> Get details for this catalog item: https://instance.service-now.com/itsp?id=sc_cat_item&sys_id=xxx
> Submit request for this ITSP item: https://instance.service-now.com/itsp?id=sc_cat_item&sys_id=xxx
> Show my recent service requests with details
All Request Types Supported
Standard Items (laptops, software, access requests):
> Order item a5a360ffdb10fb80ec8dfb61d9619ea with variables {location: "Building A"}
Record Producers (create incidents, problems):
> Submit record producer for incident with description "Network outage"
Order Guides (multi-item bundles):
> Submit order guide with items [laptop, monitor, keyboard]
Available Tools
Incidents
incidents_list- List incidents with filteringincidents_get- Get incident detailsincidents_create- Create new incidentincidents_update- Update incidentincidents_resolve- Resolve incident
Changes
changes_list- List change requestschanges_get- Get change detailschanges_create- Create change requestchanges_tasks- Get change tasks
Service Catalog (All Request Types)
Standard Catalog Items (cart-based ordering):
catalog_items- Browse catalog itemscatalog_item_get- Get item detailscatalog_order- Order catalog itemcatalog_order_now- Single-step orderingcatalog_add_to_cart/catalog_submit_cart- Multi-item ordering
Record Producers (direct record creation):
record_producer_submit- Submit record producer (creates incidents, problems, etc.)record_producer_get_details- Get record producer details and variables
Order Guides (multi-item bundles):
order_guide_submit- Submit order guide with multiple itemsorder_guide_get_details- Get order guide details and available items
Detection & Helpers:
catalog_detect_item_type- Auto-detect item type (Standard/Producer/Guide/Content)catalog_requests- List requests
IT Service Portal (ITSP)
itsp_parse_url- Extract catalog item info from portal URLsitsp_get_item_details- Get item details from ITSP URLitsp_submit_request- Submit request directly from ITSP URL (auto-detects type)requests_get_details- Get detailed request informationrequests_get_my_recent- Get recent requests with full details
CMDB
cmdb_list- Query configuration itemscmdb_get- Get CI detailscmdb_relationships- View CI relationshipscmdb_create- Create CI
Knowledge Base
kb_search- Search knowledge articleskb_article_get- Get article content
Users & Groups
users_search- Search usersuser_get- Get user detailsgroups_list- List groupsgroup_members- Get group members
And many more...
- Approvals, SLAs, Workflows, Email, Events, Audit, Update Sets, Security ACLs, Discovery, etc.
Configuration
Add to your Claude configuration file:
Linux/macOS: ~/.claude/user-mcps.json
Windows: %USERPROFILE%\.claude\user-mcps.json
{
"mcpServers": {
"servicenow": {
"command": "node",
"args": [
"/Users/yourname/Scripts/mcp-servers/servicenow-mcp/dist/index.js"
],
"env": {
"SERVICENOW_INSTANCE_URL": "https://yourinstance.service-now.com"
}
}
}
}
Windows users: Use double backslashes in paths:
"args": ["C:\\Users\\YourName\\servicenow-mcp\\dist\\index.js"]
Or use forward slashes (also works on Windows):
"args": ["C:/Users/YourName/servicenow-mcp/dist/index.js"]
Troubleshooting
"No authentication configured"
Run auth_browser tool or set environment variables.
"Cookies expired"
Browser cookies are valid for ~8 hours. Re-run auth_browser to refresh.
"Access denied"
Ensure your ServiceNow user has appropriate roles (itil, admin, etc.).
Contributing
Contributions are welcome! Please read CONTRIBUTING.md for details on our code of conduct and the process for submitting pull requests.
Support
- Issues: GitHub Issues
- Discussions: GitHub Discussions
Acknowledgments
- Built with @modelcontextprotocol/sdk
- Browser automation powered by Playwright with Firefox
Dependencies
- Hermes — Authentication broker. Manages OAuth2/SSO token acquisition, refresh, and serving for this MCP server.
- ToolHive — Container runtime. Hosts this server as a Docker container with streamable HTTP transport.
- MCP Gateway — Aggregation layer. Provides unified tool access across all MCP backends.
- node-vault-mcp — Credential storage. AES-256-GCM encrypted file vault (replaces macOS Keychain/keytar).
Architecture
This MCP server runs as a Docker container managed by ToolHive:
- Container — Built from the local Dockerfile and published as
localhost:5555/servicenow-mcp:latest - Transport — Streamable HTTP via the ToolHive proxy
- Authentication — Managed by Hermes (
http://127.0.0.1:9876) - Discovery — Exposed through MCP Gateway at
http://127.0.0.1:3100/mcp - Credentials — Stored in
~/.claude/secrets.vaultvia node-vault-mcp (AES-256-GCM)
License
MIT © Timothy Schwarz - see LICENSE for details
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.