Tag

#mcp

9 posts tagged.

AI dev workflow

Agent Client Protocol and MCP are not the same layer (2026)

ACP and MCP sit on opposite sides of the agent: MCP connects an agent to tools, ACP connects an editor to the agent. The spec calls itself MCP-friendly and passes your MCP servers inside session/new. The catch is the transport floor: stdio is mandatory, HTTP and SSE are optional capabilities.

9 min read67
MCP

MCP sampling in 2026: deprecated one revision after it grew

The MCP 2026-07-28 revision marks the Sampling feature deprecated under SEP-2577, eight months after the revision that expanded it. A field log on what the deprecation registry actually says, why elicitation survived and sampling did not, and what to check before rewriting anything.

8 min read67
MCP

Wiring an MCP server to my IDE in 30 minutes

I wire an MCP server to my IDE's agent in about thirty minutes, and suddenly it reads my real Postgres schema and project files instead of hallucinating. MCP is just a standard way for agents to call external tools. I pick one server that solves a real annoyance, drop a small JSON config with command, args, and env, restart, and let the agent fetch its own context. That's the whole win.

12 min read189