MCP Servers

模型上下文协议服务器、框架、SDK 和模板的综合目录。

MCP server by HiddenAbilitree

创建于 12/9/2025
更新于 7 days ago
Repository documentation and setup instructions

mcp-scheduling

it's actually a router

image

The router is framework agnostic, not dependent on ReAct. image

image

Testing Methodology

[!NOTE] Names of the MCP servers/tools are generic when provided to the agent. No mention of slow or fast.

Agent uses google/gemini-2.0-flash-001 and is provided two MCP servers:


scrape-slow (5 second delay)

await new Promise((resolve) => setTimeout(resolve, 5000));
return scrape(url);

scrape-fast (no delay)

return scrape(url);

The agent response verifier used openai/gpt-oss-120b.

The scheduler was tested against all 824 questions in the Google Frames Dataset.

[
  {
    "Prompt": "If my future wife has the same first name as the 15th first lady of the United States' mother and her surname is the same as the second assassinated president's mother's maiden name, what is my future wife's name? ",
    "Answer": "Jane Ballou",
    "reasoning_types": "Multiple constraints",
    "wiki_links": ["https://en.wikipedia.org/wiki/President_of_the_United_States", "https://en.wikipedia.org/wiki/James_Buchanan", "https://en.wikipedia.org/wiki/Harriet_Lane", "https://en.wikipedia.org/wiki/List_of_presidents_of_the_United_States_who_died_in_office", "https://en.wikipedia.org/wiki/James_A._Garfield"]
  }, // ...
]

Results

image Agent using the router was faster by 7112.14 ms (63.53%) on average.

image Expected, since the current implementation does not track tool result quality.
快速设置
此服务器的安装指南

安装包 (如果需要)

npx @modelcontextprotocol/server-mcp-scheduling

Cursor 配置 (mcp.json)

{ "mcpServers": { "hiddenabilitree-mcp-scheduling": { "command": "npx", "args": [ "hiddenabilitree-mcp-scheduling" ] } } }