Connect Claude Code to Gluecron
Push from any Claude session in 60 seconds. Your repos get lightning-fast CI, AI review on every PR, and full MCP tool access — no extra configuration needed.
Create an access token →Create an access token
Head to /settings/tokens and generate a new personal access token with repo scope (or admin,repo,user for full MCP write access). Copy the token — it's shown once.
Add the remote
In your project directory, add Gluecron as a git remote. Replace REPO with your repository name — it will be created automatically on the first push.
git remote add gluecron https://gluecron.com/USERNAME/REPO.git
Configure MCP in .mcp.json
Add the Gluecron MCP server so Claude Code can open issues, file PRs, and query your repos directly. Paste the snippet below into an .mcp.json file at your project root (the file Claude Code actually loads MCP servers from, on both the CLI and web/cloud sessions), replacing YOUR_TOKEN_HERE with the token from Step 1.
{
"mcpServers": {
"gluecron": {
"type": "http",
"url": "https://gluecron.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_TOKEN_HERE"
}
}
}
}Push
Push your branch. CI gates fire immediately and a draft PR is auto-created if you're pushing a feature branch.
git push gluecron main
For feature branches, auto-create a draft PR in one call:
curl -X POST https://gluecron.com/api/claude/push \
-H "Authorization: Bearer $GLUECRON_TOKEN" \
-H "Content-Type: application/json" \
-d '{"repoName":"REPO","branch":"my-feature"}'The response includes a pushWatchUrl — open it to watch gates and deployment live. Claude AI review lands within seconds.
Why Gluecron?
Lightning-fast CI
Gate runs fire in parallel the moment code lands. Type-check, lint, secret-scan, and test in under 30 seconds on most repos.
AI review on every PR
Claude reads the diff, flags bugs, suggests improvements, and auto-approves or blocks merge — before a human even looks.
15 MCP tools built-in
Claude Code gets native read/write tools: search code, open issues, create PRs, merge branches — all from the chat window.
Secret scanning
Every push is scanned for leaked credentials. A flagged push is blocked at the gate — not just flagged after the fact.
Self-hostable
Run Gluecron on your own infra with a single Docker image. All AI features work with your own Anthropic key.
Create a free account to get started, or sign in if you already have one.