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: Pre-warmed pools with health checks, idle eviction, and 90%+ hit rates to eliminate per-request connection overhead. - Fast Tool Registry: O(1) hash-based tool lookup with LRU caching, category indexes, and fuzzy matching for 213+ tools. - Load Balancing & Transport Optimization: Least-connections and response-time routing strategies plus message batching and compression. - Performance Monitoring: Real-time metrics for p95 latency, error rates, pool hit rates, and health status with alerting thresholds. - Use Case: When your claude-flow v3 MCP server shows slow tool execution or high memory usage, apply these TypeScript patterns to cut startup time to under 400ms and tool lookup to under 5ms. ## Quick Start Ask the AI to analyze the current MCP server performance bottlenecks and implement connection pooling, load balancing, and tool registry optimization using the mcp-specialist agent.