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

推荐订阅源

Recent Announcements
Recent Announcements
J
Java Code Geeks
雷峰网
雷峰网
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
腾讯CDC
博客园 - 司徒正美
B
Blog RSS Feed
博客园 - 三生石上(FineUI控件)
I
InfoQ
N
Netflix TechBlog - Medium
L
LangChain Blog
博客园_首页
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
Tailwind CSS Blog
MyScale Blog
MyScale Blog
美团技术团队
The Cloudflare Blog
爱范儿
爱范儿
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
H
Help Net Security
Martin Fowler
Martin Fowler
V
Visual Studio Blog

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
MCP Threat Model Template for Agent Tools
Rhumb · 2026-05-17 · via DEV Community

Rhumb

An MCP threat model is not a list of scary things the model might say. It is a route-by-route contract for what a tool can touch when the model is wrong.

Start with one tool call, then bind caller, trust class, authority surface, credential lane, data boundary, spend boundary, denied neighbor, and receipt fields before production traffic repeats it.

Treat filesystem, fetch/browser, repo, CRM, payments, email, and deployment tools as different authority classes. A read_only label is not enough when the tool can reach host state, private networks, customer records, or billable side effects.

The useful output is a copy-paste route card plus negative fixtures: the adjacent file, URL, tenant, amount, provider, row, or side effect that must fail closed.

The operator rule

Threat model the authority, not the prompt.

Prompt injection is the trigger. The blast radius is decided by the tool surface you exposed: paths, networks, tenants, credentials, budgets, side effects, and recovery behavior.

The seven fields

1. Route and capability

Question: Which exact MCP tool or capability is being exposed, and what job is it allowed to complete?

Evidence: Tool name, capability id, allowed input shape, side-effect class, environment, and owner.

2. Caller and trust class

Question: Who is calling, how much autonomy do they have, and should they see this route at discovery time?

Evidence: User, tenant, workspace, agent role, session, trust class, and filtered tool list.

3. Authority surface

Question: What external system, host state, account, network, filesystem, or customer data can the route affect?

Evidence: Allowed host/path/provider/object/resource prefixes plus explicit forbidden neighbors.

4. Credential lane

Question: Which backend principal, BYOK key, vault reference, wallet, managed key, or provider pin is used?

Evidence: Credential mode, scope, expiry/rotation behavior, revocation path, and owner.

5. Budget and quota owner

Question: Who pays for retries, provider calls, x402 proofs, quota burn, and partial success?

Evidence: Estimate, cost ceiling, quota bucket, retry ceiling, idempotency key, and billing owner.

6. Denied neighbor

Question: What nearby action must fail before the route can be called production-ready?

Evidence: A fixture for sibling path, private IP, wrong tenant, larger amount, write variant, or off-policy provider.

7. Receipt and recovery

Question: Could an operator reconstruct what happened without re-running the agent conversation?

Evidence: Policy decision, normalized input, denial reason, provider outcome, retry state, cost, and recovery hint.

Every MCP tool is not the same kind of risk

The mistake is to evaluate tools by whether they are read or write in natural language. Evaluate them by what authority they can exercise when a planner picks the wrong argument.

Filesystem / repo

Risk: Host-state authority disguised as a local helper.

Fixture: Allow one canonical repo prefix; deny parent traversal, symlink escape, hidden config, sibling repo, and host mount.

Fetch / browser / crawl

Risk: Network egress that can touch cloud metadata, loopback, private subnets, and internal services.

Fixture: Resolve DNS before request; deny metadata, loopback, RFC1918, IPv6 ULA, current-network, and service-network targets.

CRM / ticketing / docs

Risk: Tenant and record authority hidden behind friendly search or update verbs.

Fixture: Allow one workspace/object lane; deny another tenant, private project, archived record, and broad export.

Payments / billing

Risk: Budget authority where retries and partial success become real money.

Fixture: Allow one amount/merchant/product lane; deny higher amount, duplicate idempotency key, and unpriced provider path.

Email / messaging

Risk: External communication authority that can impersonate intent or leak data.

Fixture: Allow draft or approved recipient class; deny external send, list blast, wrong account, and hidden attachment.

Deploy / CI / infra

Risk: Change authority where one tool call can mutate production state.

Fixture: Allow read/build/status first; deny deploy, secret read, privilege escalation, and unreviewed config mutation.

Copy-paste route card

Route / MCP tool:
Workflow job:
Caller / tenant / workspace:
Trust class:
Allowed authority surface:
Forbidden neighbors:
Credential lane / backend principal:
Budget owner / quota bucket:
Retry and idempotency rule:
Denial fixture that must fail closed:
Receipt fields required for audit:
Recovery path when the call is denied, partial, or duplicated:

Enter fullscreen mode Exit fullscreen mode

A route card is useful because it forces the security conversation out of abstractions. If the card cannot be filled out, the runtime will improvise under pressure.

Common failures

  • Discovery shows tools the caller is not allowed to use, so the model plans around impossible authority.
  • A parameter accepts arbitrary strings where the runtime needed normalized path, host, tenant, amount, or provider allowlists.
  • Auth proves identity, but the backend principal is shared across tenants or workflows.
  • A denied neighbor returns a generic 500, silent retry, or partial side effect instead of a typed denial.
  • Receipts log the final provider response but omit the policy decision, credential lane, normalized input, and cost owner.
  • The test suite covers the happy path and never runs the adjacent path, private IP, wrong tenant, larger spend, or unsafe write variant.

Related operator guides