mcp-tool-discovery

mcp-tool-discovery is a skill for Claude Code from serac-labs/serac. It costs 53 tokens per session (5,169 once invoked), scanned A, original, Apache-2.0.

A guide for finding and using tools on a ServiceNow MCP server, a service that lets an agent call ServiceNow operations.

In plain words
What is it for?
It helps identify which ServiceNow tools exist, form searches that match them, and avoid tools that are listed in documentation but unavailable on the server.
Why use it?
It explains why most tools are hidden at first, how to search for them, and why a missing session ID can prevent calls from working.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Claude Code.

Part of the skills plugin — 56 skills shipped together

Good fit It helps identify which ServiceNow tools exist, form searches that match them, and avoid tools that are listed in documentation but unavailable on the server.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/serac-labs/serac/mcp-tool-discovery
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 serac-labs/serac --skill mcp-tool-discovery
Clone the repo
git clone --depth 1 https://github.com/serac-labs/serac

Made for: Claude Code.

Or install skills, the plugin that ships this one along with the rest of its 56 skills.

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 mcp-tool-discovery

README.md
[![agentmods](https://agentmods.dev/badge/skills/serac-labs/serac/mcp-tool-discovery/github.svg)](https://agentmods.dev/skills/serac-labs/serac/mcp-tool-discovery)
Your own site
<a href="https://agentmods.dev/skills/serac-labs/serac/mcp-tool-discovery"><img src="https://agentmods.dev/badge/skills/serac-labs/serac/mcp-tool-discovery/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 mcp-tool-discovery

Your own site · 80×15
<a href="https://agentmods.dev/skills/serac-labs/serac/mcp-tool-discovery"><img src="https://agentmods.dev/badge/skills/serac-labs/serac/mcp-tool-discovery.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,169 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.00053 $0.05169
Opus 5 $0.00026 $0.02584
Sonnet 5 $0.00011 $0.01034
Haiku 4.5 $0.00005 $0.00517

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

Security

Grade A, and why

mcp-tool-discovery 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 10d 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.

packages/skills/mcp-tool-discovery/SKILL.md · 376 lines

How it starts

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

MCP Tool Discovery

This server registers over 440 snow_* tools across 80 domains and lists none of them. A fresh tool list holds two meta-tools; everything else is behind tool_search. This guide is about getting from "there is probably a tool for this" to a call that actually runs.

No exact total is quoted here, because there are two of them and they disagree: packages/servicenow-mcp/tools.json is what the docs site publishes, the registry is what the running server can dispatch, and nine published tools are missing from the registry (see "Nine tools you can find in the docs but not on the server").

Cold start: two tools

A fresh tools/list on the stdio transport returns exactly this, no matter how many tools exist:

tool_search
tool_execute

That is deliberate. The server's own note puts the full catalog at roughly 71k tokens of schema against about 2k for the two meta-tools. The index is built with every tool marked deferred, and handlers/list-tools.ts returns only meta-tools plus whatever the current session has enabled.

The HTTP transport (the portal) does the opposite — it registers the catalog as non-deferred, so its tools/list returns everything and nothing needs enabling. You can tell which one you are on from the status in a tool_search result: [AVAILABLE] means the server is not gating on the enabled set at all.

The loop

// 1. Search. Found tools are enabled for this session by default.
tool_search({ query: "update-sets" })

// 2. Read the status on each hit:
//    [AVAILABLE] — callable now, nothing had to be enabled
//    [ENABLED]   — deferred, and enabled for this session. Callable now.
//    [DEFERRED]  — NOT callable. Nothing was enabled; see the next section.

// 3. Execute.
tool_execute({ tool: "snow_ensure_active_update_set", args: { name: "Feature: SLA fix" } })

Pass enable: false when you only want to look — it searches without touching session state.

No session id, no tools

This is the failure that wastes an afternoon. Enablement is stored per (tenant, session). With no session id there is nothing to attach it to, so tool_search enables nothing, every hit stays [DEFERRED], and every call is refused:

Read the full file on GitHub · 376 lines

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. 10d ago First seen · 376 lines · 53 tokens per session scan A 2013ccb3f513

Subscribe to this mod's changes

mcp-tool-discovery is a skill published in the GitHub repository serac-labs/serac (78 stars, last pushed 15d ago), licensed Apache-2.0. It adds 53 tokens to every session and 5,169 once invoked, about $0.0003 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

opensrc

Fetch dependency source code to give AI agents deeper implementation context. Use when the agent needs to understand how a library works internally, read source code for a package, fetch implementation details for a dependency, or explore how an npm/PyPI/crates.io package is built. Triggers include "fetch source for"…

vercel-labs/opensrc · 103 tokens

multi-tenant-architecture

Designs tenant isolation, hostname routing, custom-domain lifecycle, and plan limits on Cloudflare or Vercel. Use when asked to "isolate tenant data", "support custom domains", "build a white-label platform", or assess PSL registration. For general module structure use codebase-architecture; for SEO content use seo.

mblode/agent-skills · 72 tokens

technical-integrations

Hunt existing integration patterns and design vendor/framework-agnostic API, RFC, SDK, and integration plans for new external vendor integrations.

vincentkoc/dotskills · 31 tokens

axiom-network-framework-ref

Reference — Comprehensive Network.framework guide covering NetworkConnection (iOS 26+), NWConnection (iOS 12-25), TLV framing, Coder protocol, NetworkListener, NetworkBrowser, Wi-Fi Aware discovery, and migration strategies.

ComeOnOliver/skillshub · 55 tokens

axiom-networking

Use when implementing Network.framework connections, debugging connection failures, migrating from sockets/URLSession streams, or adopting structured concurrency networking patterns - prevents deprecated API usage, reachability anti-patterns, and thread-safety violations with iOS 12-26+ APIs.

ComeOnOliver/skillshub · 56 tokens

axiom-push-notifications

Use when implementing remote or local push notifications, requesting notification permission, managing APNs device tokens, adding notification actions/categories, building service extensions, or debugging push delivery failures. Covers APNs, FCM, Live Activity push transport, broadcast push, communication…

ComeOnOliver/skillshub · 62 tokens