★ 13 stars
Go
🤖 AI/LLM
Updated 7d ago
A Go agent harness for Claude Code — runtime hooks, MCP server, session tracking, middleware chains, and full config generation in one binary
View on GitHub →
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"yet-another-agent-ha": {
"command": "go",
"args": [
"run",
"github.com/dirien/yet-another-agent-harness@latest"
]
}
}
}
Run in terminal:
claude mcp add yet-another-agent-ha go run github.com/dirien/yet-another-agent-harness@latest
Add to .cursor/mcp.json:
{
"mcpServers": {
"yet-another-agent-ha": {
"command": "go",
"args": [
"run",
"github.com/dirien/yet-another-agent-harness@latest"
]
}
}
}