mcp-server-servicenow: Agent for Claude Code

.github/agents/deploy-mcp-server.chatmode.md

deploy-mcp-server is an agent for Claude Code from pavecer/mcp-server-servicenow. It costs 26 tokens per session (1,428 once invoked), scanned A, original, MIT.

An automated deployment helper for a ServiceNow MCP server, which connects AI agents to ServiceNow, on Microsoft Azure.

In plain words
What is it for?
It is for deploying the server to Azure Functions and checking that the deployed service works.
Why use it?
It handles authentication, environment settings, cloud infrastructure setup, deployment, and a basic validation check in one workflow.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: model in frontmatter.

This is pavecer/mcp-server-servicenow's own configuration. It tells Claude Code how to work on mcp-server-servicenow itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything mcp-server-servicenow configures →

Reuse

Borrowing it

Nothing to install: this file belongs to pavecer/mcp-server-servicenow. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/pavecer/mcp-server-servicenow/main/.github/agents/deploy-mcp-server.chatmode.md
Clone the repo
git clone --depth 1 https://github.com/pavecer/mcp-server-servicenow

Made for: Claude Code.

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 deploy-mcp-server

README.md
[![agentmods](https://agentmods.dev/badge/agents/pavecer/mcp-server-servicenow/deploy-mcp-server.svg)](https://agentmods.dev/agents/pavecer/mcp-server-servicenow/deploy-mcp-server)
Your own site
<a href="https://agentmods.dev/agents/pavecer/mcp-server-servicenow/deploy-mcp-server"><img src="https://agentmods.dev/badge/agents/pavecer/mcp-server-servicenow/deploy-mcp-server.svg" alt="Measured on agentmods" height="20"></a>
Per session 26 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,428 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.
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.00026 $0.01428
Opus 5 $0.00013 $0.00714
Sonnet 5 $0.00005 $0.00286
Haiku 4.5 $0.00003 $0.00143

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

Security

Grade A, and why

deploy-mcp-server 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 7d 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.

.github/agents/deploy-mcp-server.chatmode.md · 186 lines

How it starts

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

ServiceNow MCP Server — Deploy to Azure

This agent deploys the ServiceNow MCP Server to Azure Functions using azd. It handles login, environment configuration, provisioning, deployment, and validation.

Prerequisites Check

Before starting, verify these are installed:

  • az (Azure CLI)
  • azd (Azure Developer CLI)
  • node v20+
  • pwsh (PowerShell 7+)

Run: az --version && azd version && node --version


Workflow

Phase 1 — Authenticate

az login
azd auth login

Verify the correct subscription is active:

az account show --query "{name:name, id:id, tenant:tenantId}"

If needed, switch subscription:

az account set --subscription <subscription-id>

Phase 2 — Configure Environment

Create a new azd environment or select existing:

# New environment
azd env new <environment-name>

# Or select existing
azd env select <environment-name>

Set all required environment variables. Ask the user for these values if not already known:

ServiceNow settings (from scripts/setup-servicenow.ps1 output or manual setup):

azd env set SERVICENOW_INSTANCE_URL  "https://<instance>.service-now.com"
azd env set SERVICENOW_CLIENT_ID     "<servicenow-client-id>"
azd env set SERVICENOW_CLIENT_SECRET "<servicenow-client-secret>"
azd env set SERVICENOW_USERNAME      "<integration-user>"
azd env set SERVICENOW_PASSWORD      "<integration-user-password>"

Entra ID settings (from Azure Portal app registration):

azd env set ENTRA_TENANT_ID          "<entra-tenant-id>"
azd env set ENTRA_CLIENT_ID          "<entra-client-id>"
azd env set ENTRA_CLIENT_SECRET      "<entra-client-secret>"

Confirm values:

azd env get-values

Phase 3 — Build

npm install
npm run build

Verify the build succeeded — dist/ directory must exist.


Phase 4 — Provision and Deploy

azd up

This command:

  1. Provisions Azure resources (Function App, Key Vault, Application Insights, Storage)
  2. Stores secrets in Key Vault
  3. Deploys the built function code
  4. Outputs the MCP endpoint URL

Read the full file on GitHub · 186 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. 7d ago First seen · 186 lines · 26 tokens per session scan A f84d070f3b39

Subscribe to this mod's changes

deploy-mcp-server is an agent published in the GitHub repository pavecer/mcp-server-servicenow (1 stars, last pushed 2mo ago), licensed MIT. It adds 26 tokens to every session and 1,428 once invoked, about $0.0001 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-31.

Related

Other agents, from other repositories

aws-architecture-review-expert

Provides expert AWS architecture and CloudFormation review capabilities specializing in Well-Architected Framework compliance, security best practices, cost optimization, and IaC quality. Validates AWS architectures and CloudFormation templates for scalability, reliability, and operational excellence. Use PROACTIVELY…

giuseppe-trisciuoglio/developer-kit · 76 tokens

azure-architect

Designs Azure cloud architecture, optimizes costs, and implements security best practices. Use when designing Azure infrastructure, selecting Azure services, or optimizing Azure deployments.

armanzeroeight/fastagent-plugins · 35 tokens

deployment-verifier

Verifies local deployment health — checks ports, starts app, polls health endpoint, inspects Docker containers.

asysta-act/agent-flow · 24 tokens

database-migration

Database migration and modernization specialist. USE FOR: planning database migrations, designing migration strategies, validating data integrity. DO NOT USE FOR: operational database management, routine backups.

ivegamsft/basecoat · 37 tokens

llm2bedrock-report-generator

Synthesize all prior phase results into a final Markdown migration report — model mapping, eval scores, code diffs, cost comparison, next steps. Writes MIGRATIONREPORT .md and returns a structured report object.

awslabs/startups · 52 tokens

staff-sre

Production reliability specialist. Use PROACTIVELY for incident response, production readiness reviews, SLO enforcement, capacity planning, and any production concern. First responder for incidents.

caiaffa/claude-code-ultimate-engineering-system · 38 tokens