agent-client-protocol-polyfill 0.13.1

Polyfill proxies for Agent Client Protocol backward compatibility
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! # agent-client-protocol-polyfill
//!
//! Polyfill proxies for backward compatibility with agents that don't support
//! newer ACP features natively.
//!
//! ## MCP-over-ACP Polyfill
//!
//! The [`mcp_over_acp`] module provides a proxy that bridges MCP-over-ACP transport
//! for agents that don't support `mcpCapabilities.acp`. It intercepts `NewSessionRequest`
//! to transform `McpServer::Http` entries with `acp:` URLs into localhost TCP bridges,
//! and handles `_mcp/*` messages by routing them through those bridges.

pub mod mcp_over_acp;