agent-protocols · git:20260916.50d6810 · 2026-09-16 · sha256 28417e11c83b7c7a
agent-protocols git:20260916.50d6810A
Immutable. This exact content is served forever at /api/v1/blob/28417e11c83b7c7a.
--- name: agent-protocols description: "Implement A2A agent exchanges, MCP tools/context, and ACP editor-agent integration in Python." license: MIT metadata: kind: collection author: Médéric HURIER (Fmind) source: github.com/fmind/dot/tree/main/skills/agent-protocols created: "2026-09-16" updated: "2026-09-16" --- # Agent Protocols Connect agents and tools through the protocol required by the peers. A2A exchanges agent tasks, MCP exposes tools and context, and ACP connects agent clients such as editors to agents; these protocols are not interchangeable. ## Workflow 1. Identify the protocol, peer role, transport, supported version, and authentication contract. Inspect the locked Python SDK before using examples or generated schemas. 1. Read only the A2A, MCP, or ACP guide needed below. Use [mcp-setup](../mcp-setup/SKILL.md) for registering an existing MCP server in a host; registration is separate from implementing a client or server. 1. Exercise a deterministic local client/server round trip, invalid input, unsupported capabilities, cancellation, and transport failure. Verify task/session ownership and recovery where persistence is advertised. 1. Discover official skills through the referenced maintainer sources, review them through the [vendor policy](../agent-project/references/vendor-skills.md), and install only a relevant project-scoped selection. A protocol capability named skill is not an installable Agent Skill. 1. Add another protocol only for an actual integration need; identify its authority and interoperability boundary before adding a reference. ## Task guides <!-- guides:start --> - [a2a](references/a2a.md): A2A clients, servers, Agent Cards, task lifecycle, and official guidance. - [acp](references/acp.md): ACP editor-agent sessions, capability negotiation, streamed updates, and permission handling. - [mcp](references/mcp/GUIDE.md): MCP tool and context clients/servers, transports, schemas, and protocol tests. <!-- guides:end -->