Skip to main content
This section covers the foundational technical concepts for building any AdCP implementation - whether you’re building a client, a server, or an orchestrator.

Choose Your Protocol

Not sure which to choose? See Protocol Comparison.

Core Concepts

Getting Started

1. Choose a Protocol

  • MCP for tool-based integrations (Claude, MCP-compatible systems)
  • A2A for task-based integrations (Google AI, agent-to-agent workflows)

2. Understand Authentication

  • How agents and accounts are identified
  • Bearer token patterns
  • See Authentication

3. Handle Context

  • context_id for conversation continuity
  • task_id for tracking async operations
  • See Context & Sessions

What Both Protocols Provide

Regardless of protocol choice, you get:
FeatureSupport
All AdCP tasksSame tasks, same capabilities
Unified status systemcompleted, working, input-required, failed, etc.
Context managementSession continuity across requests
Async operationsLong-running tasks with webhooks or polling
Human-in-the-loopApproval workflows for sensitive operations
Error handlingConsistent error codes and recovery patterns

Next Steps