AgentHubAgentHub

ServiceNow MCP Server

MCP ServerMCP Registry官方收录

io.github.jschuller/mcp-server-servicenow · v0.5.1

19 tools + 5 resources for ServiceNow: CMDB, update sets, tables. OAuth 2.1, Tokyo+.

概览

ServiceNow MCP Server 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "mcp-server-servicenow": {
      "command": "uvx",
      "args": [
        "mcp-server-servicenow"
      ],
      "env": {
        "SERVICENOW_INSTANCE_URL": "<SERVICENOW_INSTANCE_URL>",
        "SERVICENOW_AUTH_TYPE": "<SERVICENOW_AUTH_TYPE>"
      }
    }
  }
}

环境变量

SERVICENOW_INSTANCE_URL必填

ServiceNow instance URL

SERVICENOW_AUTH_TYPE必填

Auth type: basic, oauth, or api_key

SERVICENOW_USERNAME可选

Username for basic or OAuth auth

SERVICENOW_PASSWORD可选secret

Password for basic or OAuth auth

SERVICENOW_CLIENT_ID可选

OAuth client ID

SERVICENOW_CLIENT_SECRET可选secret

OAuth client secret

相关资源

统一 Manifest

{
  "id": "io.github.jschuller/mcp-server-servicenow",
  "type": "mcp-server",
  "version": "0.5.1",
  "displayName": "ServiceNow MCP Server",
  "description": "19 tools + 5 resources for ServiceNow: CMDB, update sets, tables. OAuth 2.1, Tokyo+.",
  "repository": {
    "url": "https://github.com/jschuller/mcp-server-servicenow",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "pypi",
        "identifier": "mcp-server-servicenow",
        "version": "0.5.1",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "SERVICENOW_INSTANCE_URL",
            "description": "ServiceNow instance URL",
            "isRequired": true
          },
          {
            "name": "SERVICENOW_AUTH_TYPE",
            "description": "Auth type: basic, oauth, or api_key",
            "isRequired": true
          },
          {
            "name": "SERVICENOW_USERNAME",
            "description": "Username for basic or OAuth auth"
          },
          {
            "name": "SERVICENOW_PASSWORD",
            "description": "Password for basic or OAuth auth",
            "isSecret": true
          },
          {
            "name": "SERVICENOW_CLIENT_ID",
            "description": "OAuth client ID"
          },
          {
            "name": "SERVICENOW_CLIENT_SECRET",
            "description": "OAuth client secret",
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.jschuller/mcp-server-servicenow",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.jschuller%2Fmcp-server-servicenow/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
ServiceNow MCP Server — MCP Server 安装与配置 · AgentHub