npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

servicenow-expert-mcp

v0.1.0

Published

The ServiceNow MCP server with built-in platform expertise: 30 curated offline reference topics (tables, encoded queries, GlideRecord, ACLs, Flow vs Business Rules, update sets, performance) PLUS BYO-credential live Table API tools. Live tools return mode

Readme

servicenow-expert-mcp

The ServiceNow MCP server that ships built-in platform expertise.

Most ServiceNow MCP servers are pure API plumbing — they hand an LLM a REST connection and stop there. This one pairs 30 curated offline reference topics (the kind of platform knowledge a senior ServiceNow developer carries in their head) with BYO-credential live Table API tools — so the agent can both reason correctly about ServiceNow and act on your instance.

It is built on one hard rule: it never fabricates instance data. With no credentials, the live tools return {"mode":"offline"} and make zero network calls — the agent answers from knowledge and tells you to connect an instance, rather than inventing records.

MCP Node License

Why this one

| | This server | Typical OSS SN MCP | ServiceNow native MCP (Zurich+) | |---|---|---|---| | Built-in platform knowledge | ✅ 30 curated topics | ❌ API only | ❌ | | Refuses to fabricate records | ✅ tested invariant | ⚠️ varies | ✅ | | Works without an instance | ✅ knowledge offline | ❌ | ❌ | | Any SN version / any AI model | ✅ Table API (Tokyo+) | ✅ | ❌ Zurich+ & Now Assist only | | Zero entitlements | ✅ | ✅ | ❌ requires Now Assist | | Dependency footprint | MCP SDK + zod only | varies | platform |

If you want a connector, there are good free ones. If you want an agent that actually understands ServiceNow — encoded-query syntax, GlideRecord pitfalls, Business-Rule-vs-Flow decisions, ACL evaluation order, update-set hygiene — that's what this adds.

Built-in knowledge (always on, no instance needed)

30 topics covering: core tables · encoded queries (basic + advanced) · Table API (+ advanced) · GlideRecord · Aggregate API · import sets · Business Rules (incl. deep) vs Flow Designer · Script Includes · client scripts · GlideAjax · Glide APIs · Flow Designer · Service Catalog · notifications & events · scheduled jobs · REST integration · ACLs & security · update sets · scoped apps · CMDB/CI · users/groups/roles · states & choices · performance best practices · debugging & troubleshooting · a guided onboarding learning path · and a glossary.

Tools (8)

Knowledge (always on): snow_reference · snow_search_knowledge · snow_connection_status

Live Table API (only with credentials): snow_query_table · snow_get_record · snow_list_incidents · snow_create_record · snow_update_record

Bring your own instance

A free Personal Developer Instance from developer.servicenow.com gives you a full instance with REST access. Set env vars (basic auth):

| Var | Required | |---|---| | SNOW_INSTANCE_URL | ✅ e.g. https://dev12345.service-now.com | | SNOW_USER | ✅ | | SNOW_PASSWORD | ✅ |

Credentials stay in your environment — never logged, never returned. With none set, every live tool is offline and inert.

Quickstart

npm install servicenow-expert-mcp     # or clone + npm install && npm run build
servicenow-mcp                        # offline: knowledge works, live tools say mode:offline

Use it from Claude Desktop / Claude Code / any MCP client

{
  "mcpServers": {
    "servicenow": {
      "command": "npx",
      "args": ["-y", "servicenow-expert-mcp"],
      "env": {
        "SNOW_INSTANCE_URL": "https://dev12345.service-now.com",
        "SNOW_USER": "admin",
        "SNOW_PASSWORD": "..."
      }
    }
  }
}

Omit the env block to run knowledge-only (no instance, no network from live tools).

Who it's for

ServiceNow developers, consultants, and SI teams who want an AI pair that reasons like a platform expert and can safely touch a real instance — in their IDE, in Claude, or behind a chat bot.

Roadmap

  • OAuth 2.1 + PKCE (in addition to basic auth)
  • More live surfaces (CMDB walk, update-set review skill, ATC-style script checks)
  • Packaged multi-channel assistant (the hosted Nova bot)

Author & services

Built by Akshay Palimkar — SAP & ServiceNow × AI specialist. Need ServiceNow + AI wired into your practice (custom knowledge packs, governed agents, MID-server/on-prem deployment)? Reach out via the repository.

License

MIT