这是一个MCP服务器,它使LLMs能够通过MCP客户端(如Claude Desktop)动态创建新工具。
<a href="https://glama.ai/mcp/servers/1ziiztkcx1"><img width="380" height="200" src="https://gips0.baidu.com/it/u=2219685648,3133026054&fm=3081&app=3081&f=PNG?w=760&h=400" alt="mcp-tool-builder MCP服务器" /></a>
使用Claude Desktop中的create_tool命令(或强烈建议!)来动态创建新工具
cd mcp-tool-builder
uv venv
.venv\Scripts\activate
uv pip install -e .
添加到claude_desktop_config.json:
{
"mcpServers": {
"tool-builder": {
"command": "uv",
"args": [
"--directory",
"PATH_TO\\mcp-tool-builder",
"run",
"tool-builder"
]
}
}
}