MCP Tool-Retrieval Gateway
Related Servers
Alternatives to MCP Tool-Retrieval Gateway
No user-submitted related servers found.
Related Servers
- AlicenseNot gradedqualityDmaintenanceMCP proxy that reduces context usage through semantic tool routing, enabling on-demand discovery and routing of relevant tools.MIT
- AlicenseNot gradedqualityCmaintenanceIntelligent MCP proxy server that reduces context bloat by serving only the tools your AI actually needs through semantic search and a fixed two-tool surface.12MIT
- AlicenseNot gradedqualityAmaintenanceA local MCP proxy that reduces context bloat by exposing only relevant tools and compressing schemas, enabling efficient use of multiple MCP servers.2MIT
- -licenseNot gradedqualityNot gradedmaintenanceMCP proxy server with semantic tool search for LLM coding agents. It reduces context window usage by activating only relevant tools based on user queries.-
- AlicenseNot gradedqualityAmaintenanceA proxy server that wraps existing MCP servers to significantly reduce token consumption by compressing tool descriptions into a two-step interface. It enables users to integrate extensive toolsets without exceeding context limits or incurring high API costs.118Apache 2.0
- AlicenseNot gradedqualityCmaintenanceA context-aware MCP proxy that reduces token usage by exposing only 3 tools (mcp_search, mcp_call, mcp_schema) to LLMs, with on-demand tool loading and BM25 search.65 npm2MIT
TDQS
Scored across 2 tools
The two tools are entirely distinct: find_tools is for discovery/searching across upstream servers, while call_tool is for execution. There is no functional overlap or ambiguity.
Both tools follow the verb_noun pattern (find_tools, call_tool) with lowercase and underscores, making the naming predictable and consistent.
As a gateway that dynamically exposes tools from many upstream servers, two meta-tools (discover and invoke) are exactly the right scope. Each tool earns its place, and adding more would be redundant.
The tool surface fully covers the domain of a retrieval/calling gateway: discover which tool to use (find_tools) and then invoke it (call_tool). There are no obvious missing operations for this purpose.