Terry MCP服务器
A. 模型上下文协议 与集成的服务器 Terry CLI 用于直接从Claude等AI助手创建开发任务。
安装
"mcpServers": {
"Terry": {
"command": "npx",
"args": ["terry-mcp"]
}
}用法
start a terry task to ...先决条件
- Terry CLI:全局安装Terry CLI
npm install -g @terragon-labs/cli- 认证:与Terry进行身份验证
terry auth- 克劳德桌面:从下载并安装Claude桌面应用程序 claude.ai/下载
可用工具
服务器提供:
create
在Terry中创建一个带有消息和可选配置的新任务。
参数:
message(必填):在Terry中创建的任务消息repo(可选):GitHub仓库(默认:当前仓库)branch(可选):基本分支名称(默认:当前分支,回退到主分支)no_new_branch(可选):不创建新分支(默认:创建新分支)
Claude中的示例用法:
"Create a task to implement user authentication for the backend API"有选项:
"Create a task to fix the login bug" with repo "myorg/myapp" and branch "develop"与Inspector共同发展
出于开发和调试目的,您可以使用MCP检查器工具。Inspector为测试和监控MCP服务器交互提供了一个可视化界面。
访问 检查员文件 有关详细的设置说明。
使用检验员进行本地测试:
npm run inspect要基于文件更改进行构建,请运行:
npm run watch或者同时运行监视器和检查器:
npm run dev