What problem does it solve? MCP servers in claude-flow v3 suffer from slow cold starts (~1.8s), linear O(n) tool lookups across 213+ tools, and no connection reuse, causing high latency and memory waste. This Skill provides implementation patterns to reach sub-100ms response times. ## Core Features & Use Cases - Connection Pooling: Reuse MCP connections with health checks, idle eviction, and pre-warming to achieve 90%+ pool hit rates. - Fast Tool Registry: Replace linear tool search with O(1) hash indexing, LRU caching, and fuzzy matching for sub-5ms lookups. - Load Balancing & Transport Optimization: Distribute requests across server instances using least-connections or response-time strategies, with message batching and compression. - Use Case: When your claude-flow v3 MCP server responds slowly under load, use this Skill to implement the connection pool, tool index, and metrics collector to hit p95 latency under 100ms. ## Quick Start Ask the AI to analyze current MCP server performance bottlenecks and implement connection pooling, load balancing, and tool registry optimization for claude-flow v3.