ServiceNow MCP Server

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.

Category
访问服务器

README

ServiceNow MCP Server

npm version License: MIT TypeScript MCP Platform

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 filtering
  • incidents_get - Get incident details
  • incidents_create - Create new incident
  • incidents_update - Update incident
  • incidents_resolve - Resolve incident

Changes

  • changes_list - List change requests
  • changes_get - Get change details
  • changes_create - Create change request
  • changes_tasks - Get change tasks

Service Catalog (All Request Types)

Standard Catalog Items (cart-based ordering):

  • catalog_items - Browse catalog items
  • catalog_item_get - Get item details
  • catalog_order - Order catalog item
  • catalog_order_now - Single-step ordering
  • catalog_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 items
  • order_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 URLs
  • itsp_get_item_details - Get item details from ITSP URL
  • itsp_submit_request - Submit request directly from ITSP URL (auto-detects type)
  • requests_get_details - Get detailed request information
  • requests_get_my_recent - Get recent requests with full details

CMDB

  • cmdb_list - Query configuration items
  • cmdb_get - Get CI details
  • cmdb_relationships - View CI relationships
  • cmdb_create - Create CI

Knowledge Base

  • kb_search - Search knowledge articles
  • kb_article_get - Get article content

Users & Groups

  • users_search - Search users
  • user_get - Get user details
  • groups_list - List groups
  • group_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

Acknowledgments

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:

  1. Container — Built from the local Dockerfile and published as localhost:5555/servicenow-mcp:latest
  2. Transport — Streamable HTTP via the ToolHive proxy
  3. Authentication — Managed by Hermes (http://127.0.0.1:9876)
  4. Discovery — Exposed through MCP Gateway at http://127.0.0.1:3100/mcp
  5. Credentials — Stored in ~/.claude/secrets.vault via node-vault-mcp (AES-256-GCM)

License

MIT © Timothy Schwarz - see LICENSE for details

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选