terry-mcp
v0.3.0
Published
ModelContextProtocol server for Terry CLI integration
Downloads
38
Readme
Terry MCP Server
A ModelContextProtocol server that integrates with Terry CLI for creating development tasks directly from AI assistants like Claude.
Install
"mcpServers": {
"Terry": {
"command": "npx",
"args": ["terry-mcp"]
}
}Prerequisites
Terry CLI: Install the Terry CLI globally
npm install -g @terragon-labs/cliAuthentication: Authenticate with Terry
terry authClaude Desktop: Download and install Claude desktop app from claude.ai/download
Available Tools
The server provides:
create
Create a new task in Terry with a message and optional configuration.
Parameters:
message(required): The task message to create in Terryrepo(optional): GitHub repository (default: current repository)branch(optional): Base branch name (default: current branch, falls back to main)no_new_branch(optional): Don't create a new branch (default: creates new branch)
Example usage in Claude:
"Create a task to implement user authentication for the backend API"With options:
"Create a task to fix the login bug" with repo "myorg/myapp" and branch "develop"Developing with Inspector
For development and debugging purposes, you can use the MCP Inspector tool. The Inspector provides a visual interface for testing and monitoring MCP server interactions.
Visit the Inspector documentation for detailed setup instructions.
To test locally with Inspector:
npm run inspectTo build on file changes run:
npm run watchOr run both the watcher and inspector:
npm run dev