# Does ServiceNow have an MCP server?

**Yes — Official.** ServiceNow maintains an official MCP server.

## Facts

- Verdict: Official (Yes)
- Access: Built into the product — Ships inside the vendor's own app or CLI rather than as a standalone download.
- Endpoint: `MCP Server Console — in-product, instance-hosted`
- Category: [Workplace & Productivity](https://mcpyet.com/category/workplace-productivity/)
- Verified against vendor docs: 2026-08-10
- GitHub data refreshed: 2026-08-11 (re-checked every 6 hours)

## The receipts

- **In-product:** MCP Server Console — in-product, instance-hosted — ships inside ServiceNow's own product rather than as a standalone server. Documented at <https://www.servicenow.com/docs/r/release-notes/mcp-server-console-rn.html>.
- **Community alternative:** [echelon-ai-labs/servicenow-mcp](https://github.com/echelon-ai-labs/servicenow-mcp) — ★ 286, pushed 2026-04-26. MCP Server for ServiceNow

## How to connect it

Ships inside the vendor's own app or CLI rather than as a standalone download.

### Claude Code

```sh
claude mcp add servicenow -- npx -y <package-from-readme>
```

Swap in the exact package and flags from the repo README — most servers need an API key passed as an environment variable. Add `--scope user` to make it available in every project.

### Claude Desktop

Open **Settings → Developer → Edit Config** and add the server to `claude_desktop_config.json`, then restart Claude Desktop:

```json
{
  "mcpServers": {
    "servicenow": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### Cursor

Add to `.cursor/mcp.json` in your project, or `~/.cursor/mcp.json` for every project:

```json
{
  "mcpServers": {
    "servicenow": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### VS Code

Add to `.vscode/mcp.json`, then pick the server from Copilot's agent-mode tools menu:

```json
{
  "servers": {
    "servicenow": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ]
    }
  }
}
```

### ChatGPT

ChatGPT connects to **remote servers only**, and this one runs on your machine. Either expose it through an MCP gateway that gives it a public URL, or use a client with native local support (Claude or Cursor).

## How we know

ServiceNow's MCP Server Console (Zurich release) is built into the platform — exposes Now Assist skills, subflows and REST APIs to external MCP clients over OAuth 2.0, instance-hosted.

- GitHub data refreshed 2026-08-11, then every 6 hours.
- Vendor docs verified on 2026-08-10.
- Corrections: hello@mcpyet.com.

## Also in Workplace & Productivity

- [Atlassian](https://mcpyet.com/mcp/atlassian.md) — Official (Yes)
- [Google Drive](https://mcpyet.com/mcp/google-drive.md) — Official (Yes)
- [Confluence](https://mcpyet.com/mcp/confluence.md) — Official (Yes)
- [Excalidraw](https://mcpyet.com/mcp/excalidraw.md) — Official (Yes)
- [Google Sheets](https://mcpyet.com/mcp/google-sheets.md) — Official (Yes)
- [Asana](https://mcpyet.com/mcp/asana.md) — Official (Yes)

---

Source: https://mcpyet.com/mcp/servicenow/ — data refreshed 2026-08-11
