Files
WebinarNotes/wiki/concepts/evolution-of-agent-tooling.md

2.1 KiB
Raw Blame History

Evolution of Agent Tooling (Tools → MCP → Skills)

#concept

Summary

Konstantin's three-generation map of how agents get capabilities: Tools (20222024) → MCP (late 20242025) → Skills (2025→). Each generation trades off developer cost, context consumption, and flexibility.

Current Understanding

Generation What it is Strength Weakness
Tools Function tagged and injected into the model call (LangChain/LlamaIndex) Direct control Every tool eats context; you write/adapt each yourself
MCP Locally-deployed server exposing many tools via a standard protocol (Anthropic); marketplaces exist Ready-made tools, plug-in Dozens of tools per server → context blowout (>100 = chaos); network-load = security surface; needs a developer
Skills Directory + SKILL.md (+ tools + data), two-stage loading Hundreds without context blowout; author with text in any language; share via git/messenger No standards yet for data/limits

When to use which: Skills when tasks are unknown/diverse or tool count is ~550; MCP when the agent is narrow, tasks are uniform, and the same small toolset applies every time. The line blurs — Claude Code converts MCP servers into skills (file laid down, functions not all injected), erasing most MCP downsides. Konstantin doesn't hate MCP; its problems are largely solved.

Evidence

Contradictions / Uncertainty

  • "Everything changes every 6 months" — MCP was just ratified and A2A is already wanted; this map may shift quickly. Status: tentative.

Next Questions

  • Where does agent-to-agent (A2A) sit in this progression?