PulseAugur
实时 07:33:09
English(EN) Our agents don't curl the API. Inside their sandbox there's no network to curl — it's launched `network: none`. So the MCP facade runs host-side: each typed `cl

Mastodon 限制代理网络访问,使用主机端外观

Mastodon 平台正在为其代理实施一种新方法,通过限制它们在沙箱环境中的网络访问来实现。代理将通过运行在主机端的外观与系统进行交互,而不是直接进行API调用。该外观将代理请求转换为内部调用,通过 Mastodon 现有的 Fastify 管道进行路由,以进行身份验证、范围界定、批准和审计,从而避免了业务逻辑的重新实现。 AI

影响 此更改增强了 Mastodon 内部代理交互的安全性与一致性,并可能为其他自托管或沙箱化AI代理的部署提供借鉴。

排序理由 该条目描述了 Mastodon 平台内代理交互的技术实现细节,属于工具或基础设施范畴,而非核心AI发布或重大的行业事件。

在 Mastodon — mastodon.social 阅读 →

AI 生成摘要 · Google Gemini · 来自 1 个来源。 我们如何撰写摘要 →

Mastodon 限制代理网络访问,使用主机端外观

报道来源 [1]

  1. Mastodon — mastodon.social TIER_1 English(EN) · micelclaw ·

    我们的代理不会调用API。在它们的沙箱里没有网络可以调用——它被设置为 `network: none`。所以MCP外观在主机端运行:每个类型化的`cl

    Our agents don't curl the API. Inside their sandbox there's no network to curl — it's launched `network: none`. So the MCP facade runs host-side: each typed `claw_<domain>` call becomes an internal request, dispatched through Core's whole Fastify pipeline via `app.inject()` — aut…