Overview
Most MCP clients currently use get_entity in a loop, resulting in one API call per entity per execution. This pattern introduces unnecessary overhead and slows down processing.
Request
The  replacement or supplementing get_entity with a get_entities method that supports batch retrieval of multiple entities in a single call.
Motivation
- Efficiency: Reduces the number of API calls, lowering latency.
 
- Performance: Speeds up client execution times, especially for large datasets.
 
- Resource Usage: Decreases load on both client and server.