What problem does it solve? MCP servers in claude-flow v3 suffer from slow cold starts (~1.8s), per-request connection overhead, and linear O(n) tool lookups across 213+ tools, making response times unpredictable and memory usage high. ## Core Features & Use Cases - Connection Pooling: Reuses MCP connections with health checks, idle eviction, and pre-warming to target a 90%+ pool hit rate. - Fast Tool Registry: Builds hash-based O(1) tool indexes with LRU caching and fuzzy matching for sub-5ms lookups. - Load Balancing & Transport Optimization: Distributes requests across server instances using least-connections or response-time strategies, with message batching and compression. - Performance Monitoring: Collects p95 latency, error rates, and pool metrics with health status thresholds and alerting rules. - Use Case: An engineer optimizing a claude-flow v3 deployment uses this Skill to implement connection pooling and a precompiled tool index, cutting MCP startup from 1.8s to under 400ms and achieving sub-100ms p95 tool response times. ## Quick Start Ask the AI to analyze current MCP server performance bottlenecks and implement connection pooling, load balancing, and transport optimization using the mcp-specialist agent.