Skip to content
Learn Agentic AI
Learn Agentic AI archive page 143 of 146

Learn Agentic AI — Build Voice & Chat Agents

Step-by-step tutorials on building voice and chat AI agents using OpenAI Agents SDK, Realtime API, function calling, multi-agent orchestration, and production deployment patterns.

9 of 1313 articles

Learn Agentic AI
14 min read9Mar 13, 2026

Model Context Protocol (MCP): Connecting Agents to External Tools

Understand MCP, the open protocol for connecting AI agents to external tools and data sources, including its architecture, five transport types, and how to build your first MCP-connected agent.

Learn Agentic AI
12 min read4Mar 13, 2026

MCPServerStreamableHTTP: Connecting to Remote Tool Servers

Connect agents to remote MCP tool servers using MCPServerStreamableHTTP with authentication headers, timeout configuration, retry policies, tool caching, and production deployment patterns.

Learn Agentic AI
12 min read7Mar 13, 2026

Hosted MCP Tools: Server-Side Tool Execution with OpenAI

Use HostedMCPTool to run MCP tools server-side on OpenAI's infrastructure with zero callback overhead, including tool_config structure, approval options, and GitMCP for repository access.

Learn Agentic AI
12 min read5Mar 13, 2026

Caching MCP Tool Definitions for Performance

Dramatically reduce agent startup latency by caching MCP tool definitions with cache_tools_list, implementing cache invalidation strategies, and benchmarking the performance gains in production agents.

Learn Agentic AI
12 min read2Mar 13, 2026

MCP Prompts: Dynamic Agent Instructions from External Sources

Use MCP prompt resources to dynamically load and parameterize agent instructions from external servers, enabling centralized prompt management with list_prompts and get_prompt.

Learn Agentic AI
12 min read1Mar 13, 2026

MCPServerManager: Orchestrating Multiple MCP Servers

Use MCPServerManager to orchestrate multiple MCP server connections with automatic failure detection, reconnection strategies, and health monitoring using active_servers, failed_servers, and drop_failed_servers.

Learn Agentic AI
12 min read6Mar 13, 2026

Built-in Tracing in OpenAI Agents SDK: Visualize and Debug Workflows

Learn how the OpenAI Agents SDK automatically traces every agent run with agent_span, generation_span, and function_span, and how to visualize traces in the OpenAI dashboard for debugging.

Learn Agentic AI
13 min read1Mar 13, 2026

Custom Spans and Trace Visualization for Complex Workflows

Learn how to use the trace() context manager, custom_span(), and manual span lifecycle to build detailed, hierarchical trace visualizations for complex multi-step agent workflows.