惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
N
Netflix TechBlog - Medium
V
Visual Studio Blog
博客园 - Franky
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 三生石上(FineUI控件)
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
量子位
大猫的无限游戏
大猫的无限游戏
人人都是产品经理
人人都是产品经理
V
V2EX
The Cloudflare Blog
月光博客
月光博客
Last Week in AI
Last Week in AI
雷峰网
雷峰网
WordPress大学
WordPress大学
博客园 - 【当耐特】
博客园 - 聂微东
IT之家
IT之家
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Why an MCP Security Library Beats a Security Proxy
Vikrant Kuma · 2026-05-07 · via DEV Community

The Problem Nobody Talks About

AI agents are getting powerful fast. With the Model Context Protocol (MCP), a single agent can read your files, call external APIs, execute shell commands, and query databases — all in one conversation.

That power is exactly why security matters. But when you look at how most developers are trying to secure MCP today, there's a pattern worth questioning.


The Proxy Approach (and Its Hidden Cost)

Most MCP security tools today work as a proxy — a separate process that sits between your AI model and your MCP server, intercepting every request.

It sounds clean on paper. In practice, it means:

  • Extra infrastructure to deploy and keep running — one more service to monitor, restart, and update
  • Network latency on every single tool call — every request makes an extra hop before it executes
  • Another failure point — if the proxy goes down, your entire tool execution goes down with it
  • A different language — most proxy-based tools are written in Python, so TypeScript/Node.js developers are working across a language boundary they didn't ask for

The proxy approach made sense when MCP was new and people were experimenting. But for production systems, embedding security directly in your server code is a better architecture.


The Library Approach

That's the philosophy behind mcp-warden — a TypeScript library that adds a security middleware chain directly inside your existing MCP server. No separate process. No deployment complexity. No network overhead.

You import it, wrap your handler, and your server has a full security layer.

import { McpGuardian, PolicyBuilder } from "mcp-warden";

const policy = new PolicyBuilder()
  .allow("read_file")
  .allow(/^search_/)
  .block("/etc")
  .readOnly("/home")
  .rateLimit(60)
  .build();

const guardian = new McpGuardian(policy);

const guardedHandler = guardian.wrapHandler(async (request) => {
  // your existing handler logic — unchanged
  return yourMcpServer.handle(request);
});

Enter fullscreen mode Exit fullscreen mode

That's it. Every tool call now passes through a full security pipeline before your handler touches it.


What the Pipeline Actually Does

When a request arrives, mcp-warden runs it through 8 built-in checks in sequence. The first failure short-circuits — nothing downstream executes.

1. Tool authorization — is this tool on the allowlist? Supports exact names and regex patterns.

2. Input size limits — are the arguments within nesting depth and byte size limits? Oversized payloads are blocked before any parsing happens.

3. Argument schema validation — do the arguments match the declared shape for this tool? You define the schema per tool:

.argSchema("create_file", {
  type: "object",
  required: ["path", "content"],
  properties: {
    path: { type: "string", minLength: 1 },
    content: { type: "string", maxLength: 65536 }
  }
})

Enter fullscreen mode Exit fullscreen mode

If the AI sends create_file with a missing path, it's blocked before execution.

4. Path enforcement — does this call touch a restricted filesystem path?

.block("/etc")          // all access denied
.readOnly("/home")      // reads allowed, writes denied

Enter fullscreen mode Exit fullscreen mode

5. Approval gating — if approvalRequired: true, every tool call returns REQUIRES_APPROVAL until a human signs off.

6. Rate limiting — global sliding window plus optional per-tool overrides, implemented with an O(1) circular buffer.

7. Prompt injection scanning — scans all tool arguments for known injection phrases using word-boundary regex to avoid false positives.

8. Circuit breaker — if a tool keeps failing, its circuit opens automatically and stays open until cooldown expires. Idle circuits are evicted from memory to prevent leaks.


Observability Built In

After every request — allowed or blocked — the guardian emits a typed event:

guardian.on("blocked", (event) => {
  logger.warn("Tool call blocked", {
    tool: event.toolName,
    reason: event.reason,
    code: event.violationCode,
    durationMs: event.durationMs
  });
});

guardian.on("allowed", (event) => {
  metrics.increment("tool.call", { tool: event.toolName });
});

Enter fullscreen mode Exit fullscreen mode

No polling. No separate log parser. Security events flow directly into your existing observability stack.


PII Redaction on Outputs

Tool responses can contain sensitive data — emails, API keys, IP addresses, phone numbers. mcp-warden automatically strips them from every tool response before returning to the caller, in a single combined regex pass:

// Tool returns: "Contact alice@company.com, key: sk-ABCDEF12345678"
// Guardian returns: "Contact [REDACTED], key: [REDACTED]"

Enter fullscreen mode Exit fullscreen mode

Opt out if you need raw outputs:

new McpGuardian(policy, { redactToolOutputs: false });

Enter fullscreen mode Exit fullscreen mode


Zero Runtime Dependencies

The entire library ships with zero runtime dependencies. No supply chain risk from third-party packages. The validator, rate limiter, circuit breaker, injection scanner, and PII redactor are all built from scratch in pure TypeScript.

npm install mcp-warden   # installs nothing else

Enter fullscreen mode Exit fullscreen mode


CLI Tools for Config Auditing

If you work with claude_desktop_config.json or any MCP client config, the CLI can audit it for dangerous permissions:

npx mcp-warden audit ./claude_desktop_config.json

Enter fullscreen mode Exit fullscreen mode

Output:

SAFE: filesystem-server
CRITICAL: code-runner
  - Command-line flags indicate unrestricted filesystem access.

Enter fullscreen mode Exit fullscreen mode

Watch mode re-audits automatically every time you save the file:

npx mcp-warden audit --watch ./claude_desktop_config.json

Enter fullscreen mode Exit fullscreen mode

Validate a policy file before deploying it:

npx mcp-warden validate ./mcp-policy.json
# SAFE: mcp-policy.json is a valid GuardianPolicy.

Enter fullscreen mode Exit fullscreen mode

Generate a JSON Schema for IDE autocomplete:

npx mcp-warden schema --output mcp-policy.schema.json

Enter fullscreen mode Exit fullscreen mode


Getting Started

npm install mcp-warden

Enter fullscreen mode Exit fullscreen mode

import { McpGuardian, PolicyBuilder } from "mcp-warden";

const policy = new PolicyBuilder()
  .allow("read_file")
  .block("/etc")
  .rateLimit(60)
  .build();

const guardian = new McpGuardian(policy);

guardian.on("blocked", (event) => console.warn(event.reason));

export const handler = guardian.wrapHandler(yourExistingHandler);

Enter fullscreen mode Exit fullscreen mode

Full docs and source: github.com/vikrantwiz02/mcp-warden
npm: npmjs.com/package/mcp-warden


If you're building MCP servers in TypeScript and care about what your AI is actually allowed to do — I'd love your feedback.