Topic

MCP & Tool Integration

Connect assistants to real tools, design usable tool APIs, and avoid unsafe integrations.

10 stories (4 articles · 6 videos)

Start here

A few good first pieces before you browse the full feed.

More in this topic

13 min read
Article

Structured outputs and function calling: the production patterns

Structured outputs and function calling are the bridge from 'LLM that generates text' to 'system that does work'. In production, the patterns that matter are about schemas, error handling, idempotency, and graceful degradation — not just JSON mode.

Evaluate the implementation pattern, failure modes, and guardrails before building.

Advanced
29 minutes
Video

Prompting for Agents | Code w/ Claude

Anthropic. Hannah Moran and Jeremy Hadfield from Applied AI walking through how to phrase tool calls and agent prompts on a real Pokemon-playing agent — when to push behavior into the system prompt versus the tool description, what the model needs to know about each tool's preconditions. Useful immediately after you write your first MCP server and find Claude calling it in unexpected ways.
Advanced
19 minutes
Video

Building more effective AI agents

Anthropic. Anthropic engineers walking through what they actually changed when their multi-agent systems were misusing tools — collapsing endpoints, returning names instead of IDs, leaning on MCPs and Agent Skills instead of stuffing more tools into the system prompt. Maps point-for-point onto the article's checklist for tool descriptions and return-shape design.
Advanced
104 minutes
Video

Building Agents with Model Context Protocol - Full Workshop with Mahesh Murag of Anthropic

AI Engineer. Anthropic's Mahesh Murag walking through MCP's design — why tools, resources, and prompts are separated, how clients negotiate capabilities, what production hosts actually do with the protocol. Watch it after the build to understand the parts of MCP the SDK quietly hides and to calibrate the article's "production-ready" checklist against the spec authors' intent.
Advanced
75 minutes
Video

The Ultimate MCP Crash Course - Build From Scratch

Web Dev Simplified. A full, code-along build of both an MCP server and a client in TypeScript — tool definitions, schemas, prompts and resources, stdio transport, inspector debugging. It's the closest video on YouTube to actually doing what the article asks you to do, at a pace where you can pause and follow along in your own editor.
Advanced
20 minutes
Video

The Model Context Protocol (MCP)

Anthropic. The protocol's designers — Theo Chu, David Soria Parra and Alex Albert — walking through why MCP exists, the components (server, client, transport), the reception since the November 2024 release, and which servers they actually use day-to-day. Useful as the canonical source after the Nate Herk overview.
Intermediate
16 minutes
Video

How MCPs Make Agents Smarter (for non-techies)

Nate Herk | AI Automation. A 16-minute, no-jargon explanation of what an MCP server is, how clients like Claude and n8n use them, and what you actually do differently once you have one. Lines up almost exactly with the article's "connect Claude or Cursor to your tools" framing.
Intermediate