Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. SN MCP Server
S
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/11/2026, 12:02:47 AM

SN MCP Server

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

Multi-instance read-only MCP server for ServiceNow

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "sn-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "sn-mcp-server"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

πŸ“˜ SN-MCP-Server

A read-only Model Context Protocol (MCP) server for ServiceNow β€” built for developers, AI workflows, and tools that need deep visibility into ServiceNow across multiple instances (Prod, Dev, Test, PDI).

NPM Package Node.js License


✨ Features

  • πŸ”— Multi-instance β€” Prod, Dev, Test, PDI in one server
  • πŸ” Powerful querying β€” Table, Aggregate, Code Search APIs
  • 🧠 Intelligent record resolution β€” INC, CHG, RITM, sys_id
  • πŸ”„ Flow Designer + Legacy Workflows
  • 🧩 Schema inspection & discovery
  • πŸ‘₯ Identity & access data
  • πŸ”‘ Multiple Auth Methods β€” Basic Auth and OAuth 2.0 (Client Credentials, Password, Auth Code, JWT)
  • 🧰 ServiceNow SDK support β€” optional sn_sdk_explain tool is registered when now-sdk is installed globally (npm install -g now-sdk)
  • Read-only by design β€” safe on production instances
  • πŸ“„ Per-run log files β€” one file per server start, stored in OS temp folder
  • πŸ”¬ Verbose tool logging β€” per-call called/received debug lines (instance, args, result summary) when SN_MCP_VERBOSE=true
  • πŸ“š ServiceNow Docs search β€” sn_read_docs searches the ServiceNowDocs repo, returns file_path/raw_url for direct reads, and can resolve the selected branch when a non-default version is requested

πŸš€ Quick Start

Option A β€” npx (no install needed)

Terminal
npx @imjaineel-dev/sn-mcp-server --config ./sn-instance.json

Option B β€” Local clone

bash
git clone https://github.com/ImJaineel/SN-MCP-Server.git
cd SN-MCP-Server
npm install
npm start   # auto-detects sn-instance.json in repo root

βš™οΈ Configuration

1. Create sn-instance.json

config.json
{
  "default": "dev",
  "instances": [
    {
      "alias": "prod",
      "label": "Production",
      "instance": "mycompany-prod",
      "auth": "oauth2",
      "grant_type": "client_credentials",
      "client_id": "your-client-id",
      "client_secret": "your-client-secret"
    },
    {
      "alias": "dev",
      "label": "Development",
      "instance": "mycompany-dev",
      "auth": "basic",
      "username": "svc_mcp_readonly",
      "password": "your-password-here"
    }
  ]
}

πŸ“„ Full example: sn-instance.example.json

Common fields

FieldRequiredDescription
aliasβœ…Short name used in tool calls ("prod", "dev-2")
instanceβœ…Subdomain ("mycompany-dev") or full URL ("https://...")
authoptional"basic" (default) or "oauth2"
labeloptionalHuman-friendly display name
defaultoptionalUse either a top-level "default" alias or per-entry "default": true to select the default instance

Basic Auth (auth: "basic")

FieldRequiredDescription
usernameβœ…Service account username
passwordβœ…Password or API token

OAuth 2.0 (auth: "oauth2")

FieldRequiredDescription
grant_typeβœ…"client_credentials", "password", "authorization_code", or "jwt_bearer"
client_id / client_secretβœ…OAuth application credentials
username / passwordconditionalRequired for password grant
refresh_tokenconditionalRequired for authorization_code grant
jwt_private_key / jwt_subjectconditionalRequired for jwt_bearer grant (PEM key string & subject user)
jwt_issueroptionalOptional issuer value for jwt_bearer
token_urloptionalOverride the default token endpoint (default: /oauth_token.do)

Default selection is resolved in this order:

  1. explicit top-level "default" alias in the config object
  2. an entry with "default": true
  3. the first entry in the list

2. Environment variables (optional)

All optional β€” set them in your shell, in the MCP client "env" block, or in a .env file at the project root. Values from the shell take precedence over .env.

Note: If you are running the server from a local clone, a root-level .env file is loaded automatically at startup.

VariableDescriptionDefault
SN_INSTANCE_CONFIGPath to sn-instance.jsonAuto-resolved
SN_MCP_VERBOSESet to "true" to enable debug logsfalse
LOGS_TIMEZONEIANA timezone for log timestamps (CURRENT, GLOBAL, or a named zone)CURRENT
SN_LOG_DIROverride log file directoryOS temp folder
GITHUB_TOKENGitHub Personal Access Token for sn_read_docs (branch lookup and GitHub search)none

CLI flags are also supported as an alternative to environment variables:

  • --config <path> β†’ sets SN_INSTANCE_CONFIG
  • --verbose β†’ sets SN_MCP_VERBOSE=true
  • --github-token <token> β†’ sets GITHUB_TOKEN

πŸ”Œ MCP Client Setup

For Anyone, Everyone

VS Code: Press Ctrl+Shift+P, select Add MCP

Claude Desktop: Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Gemini Code Assist: Create or edit ~/.gemini/mcp.json

Amazon Q: Create or edit ~/.aws/amazonq/mcp.json

Using npx (recommended):

config.json
{
  "mcpServers": {
    "servicenow": {
      "command": "npx",
      "args": ["sn-mcp-server", "--config", "/absolute/path/to/sn-instance.json"],
    }
  }
}

Using local clone:

config.json
{
  "mcpServers": {
    "servicenow": {
      "command": "node",
      "args": ["/absolute/path/to/SN-MCP-Server/src/index.js"]
    }
  }
}

⚠️ Always use absolute paths in MCP client configs.


▢️ Running locally

bash
# Standard start (auto-detects ./sn-instance.json)
npm start

# With explicit config path
node src/index.js --config /path/to/sn-instance.json

# With verbose logging
npm run dev
node src/index.js --config ./sn-instance.json --verbose

# Auto-restart on file changes (development)
npm run watch

# Open MCP Inspector UI in browser (test tools interactively)
npm run inspect
# The inspector launcher accepts localhost and 127.0.0.1 origins so the browser can connect reliably.

# Show help
npx sn-mcp-server --help

πŸͺ΅ Logs

Each server run creates a new timestamped log file:

Code
2026-04-09T14-32-01.123Z.log

Stored in the OS temp directory:

OSDefault log location
Windows%TEMP%\ImJaineel_SN-MCP-Instance_logs\
macOS$TMPDIR/ImJaineel_SN-MCP-Instance_logs/
Linux/tmp/ImJaineel_SN-MCP-Instance_logs/

Override with SN_LOG_DIR env var. Log files are cleaned up automatically by the OS on reboot.

The startup banner always prints the exact log file path:

Code
Log file : /tmp/ImJaineel_SN-MCP-Instance_logs/2026-04-09T14-32-01.123Z.log

🧰 Available Tools

The server exposes 16 tools at runtime when the current environment supports them:

  • 14 instance tools β€” require a configured sn-instance.json
  • 2 knowledge tools β€” instance-independent tools for docs and SDK guidance

14 instance tools

ToolDescriptionVisibility
sn_list_instancesList all configured instances and their aliases, labels, and URLs.Visible when sn-instance.json is configured and loaded.
sn_pingTest connectivity to a specific instance or the default instance.Visible when sn-instance.json is configured and loaded.
sn_get_identityQuery users, groups, and group membership from identity tables.Visible when sn-instance.json is configured and loaded.
sn_inspect_tableInspect table schema or search for matching tables by name/label.Visible when sn-instance.json is configured and loaded.
sn_aggregate_tableRun aggregate queries such as count, sum, avg, min, and max.Visible when sn-instance.json is configured and loaded.
sn_query_tableGeneric read from any ServiceNow table with encoded queries, fields, paging, and display values.Visible when sn-instance.json is configured and loaded.
sn_get_recordResolve and fetch a record by sys_id, record number, task table, or CMDB CI class.Visible when sn-instance.json is configured and loaded.
sn_get_attachmentFetch attachment metadata or file content from the Attachment API.Visible when sn-instance.json is configured and loaded.
sn_get_update_setsList update sets or drill into the files inside a specific update set.Visible when sn-instance.json is configured and loaded.
sn_code_searchSearch scripting artifacts using the native ServiceNow Code Search API.Visible when sn-instance.json is configured and loaded.
sn_get_scripted_artifactsFetch Script Includes, Business Rules, Client Scripts, UI Actions, Scheduled Jobs, Fix Scripts, and Scripted REST artifacts.Visible when sn-instance.json is configured and loaded.
sn_legacy_workflow_searchSearch classic workflow activity variable values and resolve the owning workflow versions.Visible when sn-instance.json is configured and loaded.
sn_get_legacy_workflow_artifactsFetch legacy workflow artifacts from wf_* tables.Visible when sn-instance.json is configured and loaded.
sn_get_workflow_studio_artifactsFetch Workflow Studio and Flow Designer artifacts from sys_hub_* and related tables.Visible when sn-instance.json is configured and loaded.

2 knowledge tools

ToolDescriptionVisibility
sn_read_docsSearch, browse, and read ServiceNowDocs markdown by release branch. Search mode returns file_path and raw_url values for direct reads, and get_file accepts either a raw GitHub URL or a repo-relative path.Always visible.
sn_sdk_explainQuery the ServiceNow SDK for explanations of SDK skills, APIs, and concepts via now-sdk.Visible only when now-sdk is installed and can be executed successfully.

Runtime visibility rules

  • Instance tools (14) are hidden when the server starts in config-less mode (no sn-instance.json provided). In that mode, only the 2 knowledge tools remain visible.
  • sn_read_docs is always registered, because it does not depend on ServiceNow instance credentials.
  • sn_sdk_explain is added only after a successful probe of now-sdk; if the package is not installed or cannot be executed, the tool is omitted entirely. Install it globally with: npm install -g now-sdk
  • Every instance tool accepts an optional instance parameter. If omitted, the server uses the configured default instance.

πŸ’‘ Usage Examples

Target a specific instance

Code
sn_get_scripted_artifacts  table="sys_script_include"  query="nameLIKEMorpheus"  instance="prod"
sn_query_table  table="incident"  query="state=1"  instance="dev"
sn_get_update_sets  instance="pdi"

Query incidents

config.json
{ "tool": "sn_query_table", "table": "incident", "query": "active=true", "limit": 5 }

Search ServiceNow Docs

config.json
{ "tool": "sn_read_docs", "mode": "search", "search": "Install the ServiceNow SDK in an application", "version": "australia" }

Use mode": "get_file" with the returned file_path or raw_url to read the matching doc.

Get record by number

config.json
{ "tool": "sn_get_record", "number": "INC0012345" }

Search legacy workflows

config.json
{ "tool": "sn_legacy_workflow_search", "query": "morpheus", "instance": "prod" }

Aggregate

config.json
{
  "tool": "sn_aggregate_table",
  "table": "incident",
  "aggregates": [{ "field": "priority", "function": "count" }],
  "group_by": ["priority"]
}

πŸ“ Project Structure

Code
SN-MCP-Server/
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ cli.js            ← npx entrypoint (--config, --verbose, --github-token, --help)
β”‚   β”œβ”€β”€ index.js          ← server bootstrap and startup banner
β”‚   β”œβ”€β”€ config.js         ← config path resolution and validation
β”‚   β”œβ”€β”€ validator.js      ← sn-instance.json schema validation
β”‚   β”œβ”€β”€ constants.js      ← shared repo/example URLs
β”‚   β”œβ”€β”€ env-loader.js     ← .env file parser (no external deps)
β”‚   β”œβ”€β”€ logger.js         ← structured logger, per-run log files
β”‚   β”œβ”€β”€ multi-client.js   ← multi-instance routing and default-instance resolution
β”‚   β”œβ”€β”€ sn-client.js      ← per-instance REST client
β”‚   β”œβ”€β”€ handler.js        ← tool name β†’ method router
β”‚   β”œβ”€β”€ tools.js          ← MCP tool definitions
β”‚   β”œβ”€β”€ docs-client.js    ← ServiceNowDocs search/browse/read implementation
β”‚   └── sdk-client.js     ← ServiceNow SDK availability probe and explain helper
β”œβ”€β”€ scripts/
β”‚   β”œβ”€β”€ dev.js            ← development helper
β”‚   └── inspect.js        ← MCP Inspector launcher with origin allowlist
β”œβ”€β”€ sn-instance.json          ← your credentials (git-ignored)
β”œβ”€β”€ sn-instance.example.json  ← template with supported auth flows
β”œβ”€β”€ .env.example              ← environment variable documentation
β”œβ”€β”€ README.md                 ← full project documentation
└── package.json

⚠️ Troubleshooting

Invalid credentials

  • Verify username/password in sn-instance.json
  • Ensure the account has REST API access enabled in ServiceNow

Instance unreachable

  • Check the instance value format β€” subdomain or full URL
  • Verify VPN / network connectivity

sn-instance.json validation error

  • The server prints a specific error message pointing to the exact field/entry
  • See the example: sn-instance.example.json

MCP client not detecting server

  • Always use absolute paths in MCP client config
  • Restart the MCP client after config changes

πŸ” Security Notes

  • sn-instance.json is in .gitignore β€” never commit it
  • Use a dedicated read-only service account per instance
  • PDI instances can use admin credentials safely since they're isolated
  • Do not store credentials in environment variables in shared environments

🀝 Contributing

PRs welcome! Please open an issue first for larger changes.

πŸ› Report a bug

If you hit a bug, please open a GitHub issue here:

  • https://github.com/ImJaineel/SN-MCP-Server/issues/new

Include the following in your report so it can be fixed quickly:

  • what you expected to happen
  • what actually happened
  • the command or MCP client configuration you used
  • the relevant log output or error text
  • any redacted snippets from sn-instance.json or .env

πŸ“„ License

See LICENSE for details.

Related MCP Servers

View all in Developer Tools View all alternatives
  • N
    Npx Vibe

    Read-only npm package and project dependency preflight tools for AI applications.

    πŸ’» Developer Tools0 views
    Compare vs Npx Vibe β†’
  • A
    Ai Netcafe

    Compare LLM cost & latency on one prompt, translate PDF keeping layout, cited research, make PPTX

    πŸ’» Developer Tools0 views
    Compare vs Ai Netcafe β†’
  • C
    Classquill Mcp

    Read-only MCP server for ClassQuill, a tutoring-business-management platform.

    πŸ’» Developer Tools0 views
    Compare vs Classquill Mcp β†’
  • W
    Windows MCP

    An MCP Server for computer-use in Windows OS

    πŸ’» Developer Tools1 views
    Compare vs Windows MCP β†’

Frequently Asked Questions about SN MCP Server

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "sn-mcp-server": { "command": "npx", "args": ["-y", "SN-MCP-Server"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewSN MCP Server AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/sn-mcp-server?style=directory)](https://allmcps.com/mcp/sn-mcp-server)
HTML Embed
<a href="https://allmcps.com/mcp/sn-mcp-server"><img src="https://allmcps.com/api/badge/sn-mcp-server?style=directory" alt="SN MCP Server on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
0/4 checks healthy over the last 6h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
25Quality signal: Emerging Β· 25/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools10/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 3,181+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to SN MCP Server β†’Install in Claude DesktopInstall in CursorInstall in VS Code