mcp-toolselect
An MCP server that recommends specific tools for tasks by learning from usage patterns and historical success rates. It enables users to register tool capabilities and provides ranked recommendations that adapt based on feedback and execution data.
README
@aegis-ai/mcp-toolselect
An MCP server that recommends which tools to use for a given task. It learns from usage patterns and adapts recommendations over time based on success rates.
Install
bun install @aegis-ai/mcp-toolselect
Or clone and run directly:
git clone https://github.com/aegis-ai/mcp-toolselect.git
cd mcp-toolselect
bun install
bun src/index.ts
Configuration
Add to your MCP client config (e.g. claude_desktop_config.json):
{
"mcpServers": {
"toolselect": {
"command": "bunx",
"args": ["@aegis-ai/mcp-toolselect"]
}
}
}
Or if running from source:
{
"mcpServers": {
"toolselect": {
"command": "bun",
"args": ["/path/to/mcp-toolselect/src/index.ts"]
}
}
}
Tools
recommend_tools
Get ranked tool recommendations for a task description. Returns confidence scores, priority levels, and historical success rates.
Parameters:
task(string, required) - Description of the taskmax_results(number, optional) - Max recommendations to return (default: 5)
Example:
{
"task": "Write integration tests for the payment API",
"max_results": 3
}
Response:
{
"task": "Write integration tests for the payment API",
"analysis": {
"keywords": ["testing", "coding", "api"],
"complexity": "medium",
"estimatedDuration": "medium"
},
"recommendations": [
{
"tool": "jest",
"confidence": 0.85,
"reason": "matches keyword \"testing\"; strength \"integration tests\" found in task",
"priority": "required",
"successRate": 0.92,
"timesUsed": 47
}
]
}
register_tool
Register a tool with its capabilities so it can be recommended for future tasks.
Parameters:
name(string, required) - Unique tool namedescription(string, required) - What the tool doescategory(string, required) - Category (e.g. coding, testing, deployment, research, analysis)strengths(string[], required) - What the tool is good atuse_cases(string[], required) - Typical scenarios where the tool shines
Example:
{
"name": "playwright",
"description": "Browser automation and end-to-end testing framework",
"category": "testing",
"strengths": ["browser automation", "e2e testing", "cross-browser", "screenshot comparison"],
"use_cases": ["end-to-end tests", "visual regression testing", "web scraping", "form automation"]
}
record_usage
Record that a tool was used for a task and whether it succeeded. This feedback drives future recommendation quality.
Parameters:
tool(string, required) - Tool nametask(string, required) - Task descriptionsuccess(boolean, required) - Whether the tool completed the task successfullyduration_ms(number, optional) - Execution time in millisecondsnotes(string, optional) - Additional context
Example:
{
"tool": "playwright",
"task": "Run e2e tests for checkout flow",
"success": true,
"duration_ms": 12500,
"notes": "All 15 tests passed"
}
get_tool_stats
Get usage statistics and success rates for registered tools.
Parameters:
tool(string, optional) - Specific tool name. Omit to get all stats.
Example response:
{
"totalTools": 8,
"totalUsages": 142,
"tools": [
{
"name": "playwright",
"timesUsed": 47,
"successCount": 43,
"failCount": 4,
"avgDurationMs": 11200,
"overallSuccessRate": 0.91,
"contextSuccessRates": {
"testing": 0.94,
"debugging": 0.78
}
}
]
}
list_tools
List all registered tools grouped by category.
Parameters:
category(string, optional) - Filter by category
How It Works
- Register tools with their capabilities and use cases
- Ask for recommendations by describing your task
- Record outcomes after using a tool (success/failure)
- The system learns which tools work best for which types of tasks and adjusts future confidence scores accordingly
The recommendation engine:
- Analyzes task descriptions to extract keywords and estimate complexity
- Matches keywords against registered tool strengths and use cases
- Adjusts confidence using historical success rates (exponential moving average)
- Returns prioritized recommendations sorted by relevance
Data Storage
All data is stored locally in ~/.mcp-toolselect/:
tool-registry.json- Registered tools and their metadatatool-stats.json- Aggregated usage statisticsusage-log.jsonl- Append-only usage log for auditing
License
MIT - Copyright 2026 AEGIS AI Cooperative
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。