agent-config-mcp
v1.0.2
Published
MCP server for syncing agent config (`.kiro/`) via Git. Changes are submitted as PRs for review.
Downloads
32
Readme
agent-config-mcp
MCP server for syncing agent config (.kiro/) via Git. Changes are submitted as PRs for review.
Tools
| Tool | Description |
|------|-------------|
| ac_init(repo) | Clone agent config repo into .kiro/ |
| ac_status | Show sync status (changed files, ahead/behind) |
| ac_push(message?) | Create branch → commit → push → open PR |
| ac_pull | Pull latest from main |
Setup
Add to your MCP config (mcp.json):
{
"agent-config": {
"command": "npx",
"args": ["-y", "agent-config-mcp"]
}
}First use
Ask your agent to run ac_init with your config repo URL:
ac_init({ repo: "https://github.com/your-org/your-agent-config.git" })This clones the repo into .kiro/ of your current project. After that, ac_push and ac_pull work automatically.
Requirements
- Node.js 18+
- Git
- GitHub CLI (
gh) — for PR creation
