Urgent.News

650+ sources. One page. See who else covered it.

Editions

AI

The Permission Boundary My MCP Server Doesn't Actually Have

There's a theme showing up a lot in agent-tooling posts this week: agents holding tools they can misuse, and builders wiring some kind of gate in front of the dangerous ones — a signed capability, a policy layer, a human-in-the-loop check before the write actually lands. I built something that looks like that gate a while ago. Then I went and read my own code closely enough to notice it isn't…

A recurring theme in recent agent-tooling posts is agents being given tools they can misuse, with builders adding gates to prevent misuse. The MCP server was modified with a gate for the update_article function, which edits live articles by ID, title, and body. The gate checks if the article is published and if the title or body is included in the article.

If confirmed, the write proceeds, otherwise, a message is returned. However, the gate is not effective because the confirm argument is optional and not enforced. An additional layer was added to ensure the expected fingerprint of the article matches the current fingerprint, but this also has the same issue as the confirm gate. The author concludes that a permission boundary should enforce the check loudly by default, requiring an explicit skip instead of allowing omission.

Written by urgent.news from Dev.to's reporting — not their text. Machine-written — may contain errors; check the original before relying on it.

Read the original at dev.to →

More in AI

DeepSeek Now Prices Tokens Like Electricity: 50% Off-Peak Discount and a Spring Boot Pattern to Profit From It

Three days ago I knew exactly what a DeepSeek call cost me. I had wired DeepSeek V4 Pro 0813 into a Spring Boot app with Spring AI, and the math was simple: $0.435 per million input tokens, $0.87 per…

  • DeepSeek introduces off-peak pricing at 50% discount from August 16, 2026
  • Off-peak rates available 17 hours daily, peak limited to early morning and midday UTC
  • Developers can optimize costs by shifting workloads to off-peak hours

LangGraph API Failure

We've all been there - you've built an agentic AI system using LangGraph and MCP, and it's been humming along just fine, until one day, a third-party API that one of your MCP Tool primitives relies on…

More from Sunday 16 August →