一个提供 LLM Agent 系统实用工具和功能的模型上下文协议服务器,涵盖 IP 地理位置、网络诊断、系统监控、加密操作和 QR 码生成等功能,为客户端与服务器通信提供便利。
mcp-helper-tools
是基于 toolkit-mcp-server
的模型上下文协议服务器,实现了客户端与服务器之间的通信,客户端包括 Claude Desktop、IDE 和其他 MCP 兼容客户端,服务器可用于任务管理和自动化工具及资源,LLM Agent 则是利用服务器功能的 AI 模型。
# 使用 npm (推荐)
npm install @cyanheads/toolkit-mcp-server
# 或从源代码安装
git clone git@github.com:cyanheads/toolkit-mcp-server.git
cd toolkit-mcp-server
npm install
npm run build
添加到您的 MCP 客户端设置中:
{
"mcpServers": {
"toolkit": {
"command": "node",
"args": ["node_modules/@cyanheads/toolkit-mcp-server/build/index.js"],
"env": {
"NODE_ENV": "production"
}
}
}
}
// 获取地理位置数据
const geo = await mcp.use('toolkit-mcp-server', 'geolocate', {
query: '8.8.8.8'
});
// 检查连接性
const conn = await mcp.use('toolkit-mcp-server', 'checkConnectivity', {
host: 'example.com',
port: 80
});
// 获取系统信息
const systemInfo = await mcp.use('toolkit-mcp-server', 'getSystemInfo');
如需贡献,请参考项目仓库: https://github.com/cyanheads/toolkit-mcp-server
本项目遵循 Apache 2.0 许可证,详细信息请参阅 LICENSE 文件。