servicenow-platform-utilities

servicenow-platform-utilities is a skill for Claude Code, Codex from Knuckles-Team/servicenow-api. It costs 156 tokens per session (1,432 once invoked), scanned A, original, MIT.

A set of helpers for ServiceNow, a platform used to manage business workflows and records. It covers notification email, inspecting deployed Flow Designer workflows, reading application and data-classification metadata, listing activity subscriptions, and writing MetricBase time-series points.

In plain words
What is it for?
Use it to send an instance email, visualize or inspect a deployed flow, retrieve application or classification details, list subscriptions, or add a MetricBase measurement.
Why use it?
It puts several cross-platform ServiceNow operations in one place. It also helps distinguish these tasks from record editing, deployment, bulk import, and workflow-authoring tools.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to send an instance email, visualize or inspect a deployed flow, retrieve application or classification details, list subscriptions, or add a MetricBase measurement.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/knuckles-team/servicenow-api/servicenow-platform-utilities
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Knuckles-Team/servicenow-api --skill servicenow-platform-utilities
Clone the repo
git clone --depth 1 https://github.com/Knuckles-Team/servicenow-api

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for servicenow-platform-utilities

README.md
[![agentmods](https://agentmods.dev/badge/skills/knuckles-team/servicenow-api/servicenow-platform-utilities/github.svg)](https://agentmods.dev/skills/knuckles-team/servicenow-api/servicenow-platform-utilities)
Your own site
<a href="https://agentmods.dev/skills/knuckles-team/servicenow-api/servicenow-platform-utilities"><img src="https://agentmods.dev/badge/skills/knuckles-team/servicenow-api/servicenow-platform-utilities/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for servicenow-platform-utilities

Your own site · 80×15
<a href="https://agentmods.dev/skills/knuckles-team/servicenow-api/servicenow-platform-utilities"><img src="https://agentmods.dev/badge/skills/knuckles-team/servicenow-api/servicenow-platform-utilities.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 156 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,432 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00156 $0.01432
Opus 5 $0.00078 $0.00716
Sonnet 5 $0.00031 $0.00286
Haiku 4.5 $0.00016 $0.00143

Measured 12d ago against content hash 4826b351db02, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

servicenow-platform-utilities scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

servicenow_api/skills/servicenow-platform-utilities/SKILL.md · 114 lines

How it starts

The opening of the file, as written. The whole thing — 114 lines — stays where its author put it; the contents beside it link to each section on GitHub.

ServiceNow Platform Utilities (cross-domain helpers)

A grab-bag of platform-level helpers that don't belong to any one domain: email, flow introspection/visualization, classification & app metadata, activity subscriptions, and MetricBase writes. Six condensed tools.

When to use

  • Send a notification email from the instance (send_email).
  • Render a deployed flow to a Mermaid diagram, collect a flow graph from roots, or read a flow's metadata (servicenow_flows).
  • Look up a record's data-classification (get_data_classification).
  • Fetch application metadata (get_application).
  • List activity subscriptions (get_activity_subscriptions).
  • Insert a MetricBase time-series point (metricbase_insert).

When NOT to use

  • Generic table CRUD / aggregate / raw REST → servicenow-table-api.
  • App deploy, scans, update sets, ATF → servicenow-cicd-devops.
  • Bulk row ingest / attachments / batch → servicenow-import-attachment-batch.
  • HR profiles / PPM inserts → servicenow-hr-ppm.
  • Authoring/editing flows locally (Flow Designer dev-tooling) → the sibling skill servicenow-workflow-studio; workflow_to_mermaid here complements it by rendering an already-deployed flow.

Prerequisites & environment

Connect via the mcp-client skill against the servicenow-api MCP server.

Variable Required Notes
SERVICENOW_INSTANCE Instance URL (alias SERVICENOW_URL)
SERVICENOW_USERNAME Basic-auth user
SERVICENOW_PASSWORD Basic-auth password
SERVICENOW_CLIENT_ID / SERVICENOW_CLIENT_SECRET optional OAuth2
SERVICENOW_SSL_VERIFY optional TLS verification toggle

Full env/tag matrix (do not re-document here): the mcp-client reference agent-tools/mcp-client/references/servicenow-api.md. MCP_TOOL_MODE (condensed|verbose|both) selects the condensed surface (used below) vs. the one-to-one verbose tools.

Tools & actions

Prefer the condensed tools; each takes action + a params_json JSON string whose keys are passed straight to the client method.

Read the full file on GitHub · 114 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 114 lines · 156 tokens per session scan A 4826b351db02

Subscribe to this mod's changes

servicenow-platform-utilities is a skill published in the GitHub repository Knuckles-Team/servicenow-api (19 stars, last pushed 14d ago), licensed MIT. It adds 156 tokens to every session and 1,432 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

pipefy-ipaas

Use when the user wants to build, test, publish, or manage iPaaS (Advanced Automations) flows: multi-step integrations with external apps (Slack, Gmail, Google Sheets), incoming webhooks, schedules, routers, code steps, or iPaaS data tables. MCP-only, driven through 4 meta-tools over a per-pipe catalog discovered at…

pipefy/ai-toolkit · 104 tokens

pipefy-members-email-webhooks

Use this skill when the user wants to manage pipe membership, send or read card inbox emails, use email templates, or manage webhooks. Covers 12 MCP tools.

pipefy/ai-toolkit · 41 tokens

nornweave-api

Give AI agents their own email inboxes using the NornWeave API. Use when building email agents, sending/receiving emails programmatically, managing inboxes, retrieving threads, searching messages, or integrating with email providers (Mailgun, SES, SendGrid, Resend). NornWeave provides LLM-ready markdown parsing and…

DataCovey/nornweave · 77 tokens

clawaimail

Email infrastructure for AI agents — create inboxes, send and receive real emails, search messages, manage threads. Alternative to AgentMail with MCP server, REST API, webhooks, and WebSocket streaming.

joansongjr/clawaimail · 46 tokens

n8n-code-tool

Write JavaScript or Python for the n8n Custom Code Tool (@n8n/n8n-nodes-langchain.toolCode) — the AI-agent-callable tool, NOT the workflow Code node. Use when building a Code Tool attached to an AI Agent, writing code that an LLM will invoke, parsing the query input, returning a string result, defining an input schema…

czlonkowski/n8n-mcp · 221 tokens

n8n-subworkflows

Build reusable, composable n8n sub-workflows. Use when extracting shared logic, building anything multi-step or reused across workflows, or any workflow over 10 nodes — and whenever the user mentions sub-workflows, Execute Workflow, reuse, shared/common logic, modular workflows, "Define Below" inputs…

czlonkowski/n8n-mcp · 121 tokens