Nura MCP Policy Interceptor
A governance and policy enforcement gateway for MCP servers that provides hard guardrails, dynamic parameter bounds, human-in-the-loop approvals, and audit telemetry.
README
Nura MCP Policy Interceptor
A lightweight, deterministic governance and policy enforcement gateway for Model Context Protocol (MCP) servers.
Features
- Hard Guardrails: Instantly drop forbidden tool execution requests before hitting systems of record.
- Dynamic Parameter Bounds: Intercept requests that exceed numerical thresholds (e.g., discounts, spend limits).
- Human-in-the-Loop Hooks: Pause high-risk operations and surface human review requests.
- Audit Telemetry: Cryptographic-ready logging for all agent-tool evaluations.
Quickstart
# 1. Install Dependencies
npm install
# 2. Build TypeScript
npm run build
# 3. Start Interceptor Server
npm start
The server uses MCP stdio transport and is intended to be launched by an MCP client.
External Policy Files
Pass a JSON or YAML policy at startup to update rules without recompiling TypeScript:
node dist/index.js --policy ./policy.json
# The npm equivalent passes arguments after --
npm start -- --policy ./policy.yaml
JSON example:
{
"forbiddenTools": ["delete_database_record", "purge_crm_contacts"],
"requireApprovalTools": ["issue_refund", "update_deal_stage"],
"maxParamLimits": {
"discountPercentage": 20,
"amount": 1000
}
}
YAML example:
forbiddenTools:
- delete_database_record
- purge_crm_contacts
requireApprovalTools:
- issue_refund
- update_deal_stage
maxParamLimits:
discountPercentage: 20
amount: 1000
Supported extensions are .json, .yaml, and .yml. Relative paths are resolved from the process working directory. Missing, malformed, or schema-invalid policy files stop startup with an error. If --policy is omitted, the built-in policy is used.
Verification
npm test
The test command builds into dist/ and verifies:
- Governance decisions use only
ALLOW,BLOCK, andREQUIRE_APPROVAL. - Forbidden tools and out-of-bounds parameters return policy failures without invoking the target executor.
- Every evaluated tool request emits a
[GOVERNANCE AUDIT LOG]entry with its timestamp, decision, tool name, and reason. - The compiled stdio server enforces built-in and external policy behavior through an MCP client.
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.