MCP servers are exploding — and so is the attack surface. Every tool call an AI agent makes is a trust decision. Prompt injection can become tool misuse. Runtime gateways that baseline tool calls, detect drift, and enforce least-privilege access are the security layer this ecosystem needs in 2026.
Evan Hu
@xiaomoinfo.bsky.social
Full-stack developer 🇯🇵 Go / TypeScript / Vue / React / K8s Building open-source tools for the pnpm ecosystem 🔧 pcu — pnpm catalog updater 📱 KubePocket — K8s dashboard for iOS 🏢 @yldm-tech https://github.com/houko
MCP has a real adoption moat — every AI app that shipped tools in the last 18 months built on it. Google's A2A targets agent coordination, a layer above MCP. Different problems, not competitors. MCP wins by being the USB-C of LLM tool integration.
2025: AI agents finally hit production. OpenAI, Google, Meta betting on Rust for orchestrators. Python for models, Rust for the glue. Memory safety = agents that don't leak. Stack is shifting. https://blog.devgenius.io/why-openai-google-and-meta-are-betting-on-rust-for-ai-agents
Go 1.26 ships: Green Tea GC enabled by default (10–40% GC overhead cut), new(T) now takes expressions, generics can self-reference, post-quantum TLS (ML-KEM768) on by default. Massive release. https://tip.golang.org/doc/go1.26
Go 1.26 quietly shipped impactful changes: • new(T) accepts expressions (new(int64(300)) replaces &x) • Green Tea GC enabled by default • cgo overhead -30% • Experimental simd/archsimd + runtime/secret • go fix rewritten with "modernizers" Worth upgrading just for go fix alone. #go #golang
Rust 1.95.0 shipped cfg_select! macro — first-class compile-time match on cfg flags, no more cfg-if workarounds. Also: if-let guards in match expressions, Vec::push_mut, and atomic .update()/.try_update(). Clean release. https://blog.rust-lang.org/releases/1.95.0/
Rust 1.83 landed this week. The stabilized let-else pattern is one of the best ergonomics improvements in years. No more nested matches, no more unwrap_or_else bloat. Not glamorous, just really good DX. This is why Rust wins. https://blog.rust-lang.org/2026/05/15/Rust-1.83.0.html
Just found this very interesting project: tmikov/hermes-node 🦋 Node.js compatibility layer built on top of Hermes engine. Run TypeScript directly, built-in Chrome DevTools debugger, implements native Node.js modules. This is going to be huge. https://github.com/tmikov/hermes-node
MCP is the most underhyped AI tech right now. Everyone argues about LLM benchmarks while production agent systems are quietly standardizing on Model Context Protocol. Still rough edges, but this is the real sleeper standard of 2026. https://thenewstack.io/model-context-protocol-roadmap-2026/ #MCP
🔍 2026 trend: Prompt Engineering is out, MCP is in. Model Context Protocol is the first standard that makes multi-agent systems actually work. No more hardcoding tools. https://github.com/modelcontextprotocol #AI #Agents #MCP
Everyone is still arguing which LLM is best, but the real quiet revolution in 2026 is MCP. It's not another framework. It's the TCP/IP for agents. This is the layer that will make multi-agent systems actually work, not just demo toys. https://modelcontextprotocol.io
2026 MCP roadmap dropped. This isn't just an IDE tool protocol anymore. Next: native agent-to-agent communication. Went from hardcoding tools to standardised agent interfaces in 12 months. Most important thing happening in AI agents now. https://blog.modelcontextprotocol.io/posts/2026-mcp-roadmap/
2026: There won't be one super AGI. There will be thousands of tiny specialised agents talking to each other. MCP is the quiet boring protocol that makes this possible. Nobody hypes it. But everyone actually building production agent systems is already moving over. https://aiagentsdirectory.com
Pulumi's flexibility is nice until you're debugging Python spaghetti at 2am. Terraform's boring consistency wins eventually. ✅ Pulumi for small teams ✅ Terraform/OpenTofu for anything that outlives you #devops #iac #terraform #pulumi https://reddit.com/r/devops/comments/1qkp531/
pnpm 10.26 is out: finally added granular build script permissions. No more random postinstall scripts running without explicit allowlist. This is one of the most important security improvements ever in a JS package manager. Everyone should upgrade. https://pnpm.io/blog/releases/10.26
MCP went from experimental spec to de-facto AI agent tooling standard in 6 months. 700% faster tool calls vs raw function calling. Nobody is talking about the missing auth boundaries and supply chain attack surface yet. Move fast, break security later. #AI #MCP #Agent
MCP 2026 observation: Protocol design is solid, production tooling is still ~12 months behind all the hype. Everyone is talking about it, almost no one runs it reliably in production yet. This is normal. This is exactly how good tech evolves. https://modelcontextprotocol.io #MCP #AI #LLM #Agents
MCP became the USB-C of AI. By 2026, OpenAI, Google, and the Linux Foundation all run on it. GitHub just added dependency + secret scanning for MCP servers. The protocol standardization wave happened faster than anyone expected. https://modelcontextprotocol.io/
MCP 生态爆发中。 Anthropic 2024 年底推,2026 年 OpenAI/Google/Linux Foundation 全都在用。GitHub 刚上了 MCP 依赖扫描+密钥检测,Kafka 等垂直领域的 MCP server 也开始冒头。 最大意义:AI 助手不再只是聊聊天,开始真正操控工具——数据库/Git/API 全都标准化了。 风险:生态碎片化,MCP server 质量参差不齐。下一步看 registry 能不能统一。 #MCP #AI #ModelContextProtocol
CopyFail: the most severe Linux threat in years. Kernel bypass copies files across containers/VMs — hitting multi-tenant servers, CI/CD, and Kubernetes. Run shared K8s infra? Patch now, audit boundaries.
The borrow checker is a formal model for ownership baked into the type system. Go chose GC for simplicity. Rust chose affine types for zero-cost safety. Neither is wrong. Rust catches entire bug classes at compile time that Go finds at runtime. That is the real Rust pitch, not "fearless."
Ghostty: the terminal I've been waiting for. Written in Zig, GPU-accelerated, native macOS UI — no Electron. Config is a text file. After Alacritty and Kitty, Ghostty finally hits the sweet spot. https://ghostty.org #devtools #zig #opensource
The MCP spec has 3 primitives: Tools, Resources, Prompts. Most servers only implement Tools. Resources = persistent data (DB state, files, schemas) Prompts = reusable templates Most MCP implementations are only using 1/3 of the spec. #MCP #AI
MCP is becoming the USB-C of AI agents. Write once, use everywhere. GitHub building an immune system for AI coding agents on MCP validates this pattern. Winners: MCP server builders. Losers: proprietary agent SDKs that reinvented the wheel.
The more I use AI coding agents, the more I believe in dedicated context per domain. My coding agent doesn't need my travel plans. My research agent doesn't need my emails. Context isolation isn't just security — it's performance. Mixed contexts = degraded focus.
K8s operators: the mental shift is simple — treat your cluster as declarative code, not imperative scripts. ArgoCD + Flux proved GitOps works at scale. Crossplane takes it further: infra as managed resources. Still clicking cloud consoles? You are doing 2020 DevOps. https://crossplane.io/
Google announced GKE hypercluster supporting 1 million accelerator chips. That's not a Kubernetes cluster anymore — it's a distributed OS for AI. The Cloud Native model won. Not containers, not microservices — the idea that you can orchestrate anything at any scale. What's the next boundary?
AWS MCP Server is now GA — AI coding agents can access S3, EC2, Lambda via the Model Context Protocol with IAM auth built in. The pattern is clear: agents that can act, not just answer. Next frontier is multi-service orchestration with real guardrails. #MCP #AIagents #AWS
PostgreSQL advisory locks: forgot Redis exists? pg_advisory_lock(key) — acquire COMMIT; — held until tx ends pg_advisory_unlock(key) — release No Redis needed. Works across sessions. Transaction-safe. That's often enough.
pnpm v9 experimental global virtual store: 同一个依赖只存一份,整个文件系统共享。 不再每个 worktree/project 重复下载。CI 快了,磁盘省了,git clone 之后几乎 0 install。 Node.js 生态终于认真对待 monorepo 的磁盘问题了。值得跟进 https://pnpm.io/blog/2026/04/09/experimental-global-virtual-store