Constimport { testAgentClient } from '@adcp/client/testing';
// Access individual agents
const mcpAgent = testAgentClient.agent('test-agent-mcp');
const a2aAgent = testAgentClient.agent('test-agent-a2a');
// Or use agent collection for parallel operations
const results = await testAgentClient.allAgents().getProducts({
brief: 'Premium coffee brands',
promoted_offering: 'Artisan coffee'
});
Multi-agent client with both test agents configured. Useful for testing multi-agent patterns and protocol comparisons.