NitroWatch

NitroWatch

A governance layer for MCP servers that classifies tools by risk, enforces agent permissions, lets safe tools earn autonomy through a track record, and keeps an audit trail. Requires human approval for irreversible actions and provides blast radius context.

Category
Visit Server

README

NitroWatch

Your AI agent just got a permission system.

Connect an AI agent to an MCP server today and it is all-or-nothing: either the agent can call every tool, or a human hand-approves every single call, forever. There is no policy layer, no notion of which tools are dangerous, no audit trail, and no way for trust to grow over time.

NitroWatch is the missing governance layer. It sits in front of any MCP server, classifies every tool by risk, enforces what the agent may do, lets safe tools earn autonomy through a proven track record, and records every decision permanently.

Built with the NitroStack TypeScript SDK for the NitroStack Γ— SRM Hackathon 2026.

πŸ›‘οΈ Read the full walkthrough β†’

The problem MCP has today, the three risk tiers, how autonomy is earned, and the six bugs we found while building this (two of them in NitroStack's own framework, reported upstream).


The problem

Imagine a company's MCP server exposing three tools:

Tool Consequence
get_invoice Harmless. Reads data.
send_invoice Costs money, but can be voided.
delete_account Irreversible. Gone is gone.

MCP treats all three identically. There is no way to express "let the agent read freely, ask me before it spends money, and never let it delete anything."

Every team adopting MCP hits this wall immediately, and both usual answers are bad:

  • Approve everything manually β†’ the human becomes the bottleneck and starts rubber-stamping.
  • Trust the agent fully β†’ one hallucinated tool call destroys production data.

NitroWatch is the middle path nobody has built.

How it works

       AI AGENT
          β”‚  request_action(serverId, toolName, args)
          β–Ό
  β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
  β”‚                 NITROWATCH                    β”‚
  β”‚                                               β”‚
  β”‚   1. classify   every tool β†’ a risk tier      β”‚
  β”‚   2. enforce    tier decides what happens     β”‚
  β”‚   3. earn       clean record β†’ autonomy       β”‚
  β”‚   4. audit      every decision recorded       β”‚
  β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
        β”‚              β”‚                  β”‚
    readβ”‚    reversibleβ”‚      irreversibleβ”‚
        β–Ό              β–Ό                  β–Ό
    RUNS NOW    approval, until        ALWAYS
                  promoted            APPROVAL
                                  (never promotes)
          β”‚
          β–Ό
   DOWNSTREAM MCP SERVER

The three tiers

Tier Meaning Behaviour
read No side effects Runs immediately, always
reversible Real effects, can be undone Gated β€” can earn autonomy
irreversible Cannot be undone Gated permanently

The hard rule: an irreversible tool can never be promoted to run unattended, regardless of how good its track record is. Trust is earned per tool, but the ceiling is set by consequence, not history. That single constraint is what makes NitroWatch safe to put in front of a production system.

Earned autonomy

A reversible tool that accumulates 3 clean approvals with zero denials becomes eligible for promotion. NitroWatch then offers β€” it never promotes itself. A human confirms with promote_tool, and can withdraw it instantly with revoke_tool.

A single denial permanently disqualifies a tool from autonomy. If a human ever said "no", the pattern isn't clean enough to stop asking.

Blast radius

Before approving, the human sees what the action would actually touch:

scoped to accountId="acc_991"
UNBOUNDED β€” "force" is set, so this may affect every record this tool can reach

"Approve this?" and "approve this, knowing it hits every record" are very different questions.


⚠️ The bug we found in our own classifier

We pointed the classifier at a domain it had never been tuned for, and it immediately made a dangerous mistake. This is the most important thing we learned building NitroWatch, so it gets its own section rather than a footnote.

The classifier was written and tested against a billing vocabulary. To check whether it generalised, we ran it over an infrastructure server β€” cluster operations, databases, backups. One result stopped us:

❌  read    scale_deployment    matched read-only verb "count"

scale_deployment was classified read.

In NitroWatch, read means autonomous from birth β€” it runs immediately, forever, with no approval. A tool that resizes production deployments would have run completely unsupervised.

Why it happened

The classifier read the tool name and its description as one bag of words. The description said:

"Change the replica count of a deployment."

count is in the read-verb list. One noun in a sentence of prose was enough to grant a mutating tool permanent unattended execution.

The same flaw hit rotate_credentials, which matched set in "invalidate the previous set" β€” again a noun, not a verb.

The two rules that came out of it

1. The tool name is authoritative. A name is written to state what a tool does. A description is prose. They are no longer read as one bag of words β€” the name decides the tier, and the description is consulted separately.

2. The description may only escalate risk β€” never reduce it. Prose can legitimately reveal that a tool is more dangerous than its name suggests β€” a cleanup tool that "permanently deletes archived records" really is irreversible, and we want that caught. But a description can never argue a tool down to read.

And an unrecognised name with a read-looking description now defaults to reversible, not read. No evidence from the name is not enough to grant unattended execution.

πŸ” Rule 2 is a security property, not just a bug fix

If a description could lower a tool's tier, then the description becomes an attack surface. Anyone who controls the text of a tool β€” the author of a third-party MCP server you connected β€” could write prose designed to talk NitroWatch into treating delete_everything as read-only.

Under the current rules that is impossible. The worst a hostile description can do is make a tool look more dangerous than it is, which fails safe. The same principle governs the LLM classifier: on disagreement, the more dangerous verdict always wins.

What this cost, and what it bought

One test run against an unfamiliar vocabulary. It is now locked in by a regression test asserting scale_deployment can never be classified read, plus a generalisation test over the whole infrastructure vocabulary.

We would rather ship a governance tool that has been caught failing and fixed than one that has never been tested outside the domain it was written for.


Architecture

src/
β”œβ”€β”€ index.ts                            McpApplicationFactory bootstrap
β”œβ”€β”€ app.module.ts                       @McpApp root module
β”œβ”€β”€ health/system.health.ts             health checks
└── modules/nitrowatch/
    β”œβ”€β”€ nitrowatch.module.ts            registers all controllers
    β”œβ”€β”€ nitrowatch.store.ts             state: servers, policies, trust, audit
    β”œβ”€β”€ nitrowatch.policy.ts            risk classifier + blast radius
    β”œβ”€β”€ nitrowatch.tools.ts             register / discover / burn rate / glue
    β”œβ”€β”€ nitrowatch.governance.tools.ts  classify / request / approve / promote
    β”œβ”€β”€ nitrowatch.resources.ts         policies, pending, audit, logs
    └── nitrowatch.prompts.ts           approval briefing, posture review

Design notes

  • nitrowatch.store.ts is the only stateful module. Everything else reads through its helpers, so swapping in a database touches exactly one file.
  • All execution funnels through one function (executeOnServer), so nothing can run without passing an audit point.
  • The classifier is deterministic and biased toward caution. Anything it cannot confidently read as read-only is treated as at least reversible β€” an over-cautious classifier costs a click, an under-cautious one costs a database.
  • NitroWatch is an MCP server that is also an MCP client. It speaks the protocol in both directions, which is what lets it govern arbitrary servers.

Tools

Tool Purpose
register_server Register an MCP server to be governed
discover_capabilities Connect to it and enumerate tools/resources/prompts
classify_tools Assign every tool a risk tier
request_action Agent asks to call a tool β€” allowed, or queued for approval
approve_action Human approves β†’ executes, trust +1
deny_action Human denies β†’ blocked, autonomy disqualified
promote_tool Grant standing autonomy after a clean record
revoke_tool Withdraw autonomy immediately
get_trust_status Track record and autonomy state per tool
get_audit_log Full decision history
get_burn_rate Token budget projection
generate_glue Stub connector between two registered servers

Resources

URI Contents
nitrowatch://servers All registered servers
nitrowatch://servers/{serverId}/logs Per-server log entries
nitrowatch://policies Risk tier + autonomy for every governed tool
nitrowatch://pending Actions awaiting a human decision
nitrowatch://audit Complete audit trail

Prompts

Prompt Purpose
approval_briefing Plain-language brief for a pending action
security_posture_review What runs unattended, what is gated, what looks risky

Try it β€” the companion demo server

nitrowatch-billing-demo is an intentionally ungoverned MCP server built to be governed by this one. It exposes five tools that land on all three risk tiers β€” including a delete_account that will permanently destroy an account and its invoices for anyone who asks, with no confirmation.

git clone https://github.com/Mohith535/nitrowatch-billing-demo.git
cd nitrowatch-billing-demo && npm install && npm run build
npx nitrostack-cli start --port 3100

Then, from NitroWatch:

register_server({ name: "Billing API", endpoint: "http://localhost:3100/sse" })
discover_capabilities({ serverId: "billing-api" })
classify_tools({ serverId: "billing-api" })
request_action({ serverId: "billing-api", toolName: "delete_account",
                 args: { accountId: "acc_991" } })   // β†’ blocked

⚠️ Use --port β€” the PORT environment variable is silently ignored and the server would otherwise bind 3000, colliding with NitroWatch.

If you run NitroWatch from NitroCloud rather than locally, it cannot reach localhost on your machine. Run both locally, or deploy the billing server too and register its public URL.

Installation

Requirements: Node.js 20.x (18+ minimum), npm 9+

git clone https://github.com/Mohith535/nitrowatch.git
cd nitrowatch
npm install
npm run dev

Then open the project in NitroStudio β†’ Studio App Canvas β†’ Tools.

Production

npm run build      # β†’ dist/
npm run start:prod

Environment setup

Copy .env.example to .env. No secrets are required to run locally.

Variable Default Purpose
NITRO_LOG_LEVEL info Log verbosity
NITROSTACK_APP_MODE universal NitroStack app mode
MCP_TRANSPORT_TYPE stdio dev / dual prod stdio Β· http Β· dual
PORT 3000 HTTP port when transport is http/dual
LLM_API_KEY unset Enables LLM classification. Unset is a valid state β€” the deterministic classifier runs instead.
LLM_BASE_URL https://api.openai.com/v1 Any OpenAI-compatible endpoint (Groq, OpenRouter, Cerebras, local)
LLM_MODEL gpt-4o-mini Model name for the above

API keys for governed servers are supplied per-server via register_server and are never committed.

Testing

npm test

18 tests over the security-critical logic β€” tier assignment, verb precedence, tokenization, the fail-safe default, blast-radius detection, description-escalation rules, cross-domain generalisation, and the promotion rules.

They earn their keep. They have caught three real bugs so far β€” the third is significant enough to have its own section above:

  1. Conjugated verbs didn't match. A description reading "permanently deletes archived records" classified as reversible, because the verb list held delete and the text said deletes. Fixed with suffix stripping β€” deliberately not prefix matching, which would make settings match the verb set and misclassify get_settings.
  2. camelCase argument keys were invisible to blast-radius detection. { accountId: "acc_991" } reported "scope inferred from: accountId" instead of the actual value, because the regex anchored on _ or start-of-string. Keys are now tokenized the same way tool names are.
  3. ⚠️ A mutating tool was classified read-only because a noun in its description matched a read verb β€” scale_deployment would have run unattended. See the section above. This is the one that mattered.

All three were in code that looked obviously correct.

Classification: two layers

classify_tools tries the LLM classifier first and falls back to the deterministic one. Three rules govern the interaction:

  1. Any failure falls back β€” no key, quota exhausted, timeout, malformed reply. Governance must never fail open.
  2. On disagreement, the more dangerous tier wins. Disagreement is a signal to be careful, not a coin flip.
  3. Rule 2 is also a prompt-injection defence. A hostile tool description cannot talk the system down from a tier the verb heuristic already flagged β€” the worst it can do is talk it up.

This mirrors the deterministic classifier's own rule that a description may only escalate risk β€” see the bug we found. Both layers fail in the same safe direction, deliberately.

The LLM call is capped at 8 seconds so a slow classifier can't stall the governance path.

Known limitations

Stated plainly, because a governance tool that hides its gaps is worth less than one that names them.

  • Governance decisions are unauthenticated. Anyone who can reach the server can call approve_action or promote_tool. Production would gate these behind operator identity β€” NitroStack's @UseGuards is the natural mechanism. This is the most significant gap.
  • State is in-memory. A serverless cold start clears policies, approvals, and the audit trail. nitrowatch.store.ts is the only file that would change.
  • estimateBlastRadius reads arguments, not the target system. It cannot know that { status: "inactive" } matches 40,000 rows. It flags shape, not true magnitude.
  • get_burn_rate takes usage as an input rather than measuring it, so it projects rather than tracks.
  • generate_glue emits a stub and does not solve schema mapping between the two tools.

Usage

A full governance cycle:

// 1. Put a server under governance
register_server({ name: "Billing API", endpoint: "https://billing.example.com/sse" })
discover_capabilities({ serverId: "billing-api" })
classify_tools({ serverId: "billing-api" })
//   β†’ get_invoice     read          runs freely
//   β†’ send_invoice    reversible    gated, can earn autonomy
//   β†’ delete_account  irreversible  gated forever

// 2. A read passes straight through
request_action({ serverId: "billing-api", toolName: "get_invoice", args: { id: "inv_1" } })
//   β†’ { decision: "allowed", tier: "read" }

// 3. Something dangerous is stopped
request_action({ serverId: "billing-api", toolName: "delete_account", args: { accountId: "acc_991" } })
//   β†’ { decision: "blocked", approvalId: "act_1", tier: "irreversible",
//       blastRadius: 'scoped to accountId="acc_991"' }

// 4. Human decides, with context
approval_briefing({ approvalId: "act_1" })
deny_action({ approvalId: "act_1", reason: "not authorised for bulk deletion" })

// 5. A reversible tool earns its way up
request_action(...) β†’ approve_action(...)   // Γ—3
//   β†’ promotionOffer: { eligible: true, ... }
promote_tool({ serverId: "billing-api", toolName: "send_invoice" })
//   β†’ now runs unattended

// 6. But the irreversible one never can
promote_tool({ serverId: "billing-api", toolName: "delete_account" })
//   β†’ Error: Refused β€” irreversible tools can never be promoted.

Roadmap

  • LLM classification β€” classifyWithLlm() in nitrowatch.policy.ts is the seam. Contract: LLM first, deterministic fallback on any failure, and on disagreement take the more dangerous tier.
  • Approval console widget β€” a React widget over nitrowatch://pending.
  • Durable state β€” swap the in-memory Maps in nitrowatch.store.ts for a database so policies survive a serverless cold start.

License

Apache-2.0

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured