AgentHubAgentHub

ServiceNow

MCP ServerMCP Registry官方收录

io.github.mindstone/mcp-server-servicenow · v0.2.2

ServiceNow ITSM MCP server for Model Context Protocol hosts

概览

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

安装

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

{
  "mcpServers": {
    "mcp-server-servicenow": {
      "command": "npx",
      "args": [
        "-y",
        "@mindstone/mcp-server-servicenow"
      ],
      "env": {
        "SERVICENOW_INSTANCE": "<SERVICENOW_INSTANCE>",
        "SERVICENOW_USERNAME": "<SERVICENOW_USERNAME>",
        "SERVICENOW_PASSWORD": "<SERVICENOW_PASSWORD>"
      }
    }
  }
}

环境变量

SERVICENOW_INSTANCE必填

ServiceNow instance name (e.g. acme for acme.service-now.com)

SERVICENOW_USERNAME必填

ServiceNow username

SERVICENOW_PASSWORD必填secret

ServiceNow password

相关资源

统一 Manifest

{
  "id": "io.github.mindstone/mcp-server-servicenow",
  "type": "mcp-server",
  "version": "0.2.2",
  "displayName": "ServiceNow",
  "description": "ServiceNow ITSM MCP server for Model Context Protocol hosts",
  "repository": {
    "url": "https://github.com/mindstone/mcp-servers",
    "source": "github",
    "subfolder": "connectors/servicenow"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@mindstone/mcp-server-servicenow",
        "version": "0.2.2",
        "runtimeHint": "npx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "SERVICENOW_INSTANCE",
            "description": "ServiceNow instance name (e.g. acme for acme.service-now.com)",
            "isRequired": true
          },
          {
            "name": "SERVICENOW_USERNAME",
            "description": "ServiceNow username",
            "isRequired": true
          },
          {
            "name": "SERVICENOW_PASSWORD",
            "description": "ServiceNow password",
            "isRequired": true,
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.mindstone/mcp-server-servicenow",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.mindstone%2Fmcp-server-servicenow/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
ServiceNow — MCP Server 安装与配置 · AgentHub