Connect GitHub to Claude via Bindify
Set up once. Never re-authenticate again.
// Why use Bindify for GitHub?
GitHub App installation tokens expire in just 1 hour. Refresh token rotation is single-use, and race conditions cause silent failures that kill your session mid-workflow. Bindify handles GitHub's complex token lifecycle so you never lose your connection. Learn more about MCP connection problems →
// Setup steps
Step 1: Sign up
Create a Bindify account at app.bindify.dev. You can start with the free 24-hour trial — no credit card required.
Step 2: Connect GitHub
In your Bindify dashboard, click "Add Connection" and select GitHub. You will be redirected to GitHub to authorize Bindify. Choose which repositories and organizations to grant access to.
Step 3: Copy your secret URL
After authorization, Bindify generates your permanent MCP URL. Copy it from the dashboard. It looks like:
https://api.bindify.dev/mcp/github/{your-credentials}/sse
Step 4: Add to Claude
Follow the instructions below for your Claude client.
// Claude Desktop
Open your Claude Desktop config file and add the GitHub MCP server:
{
"mcpServers": {
"github": {
"url": "https://api.bindify.dev/mcp/github/{your-credentials}/sse"
}
}
}
Replace {your-credentials} with the value from your Bindify dashboard. Restart Claude Desktop to activate.
// Claude Code
Add the GitHub MCP server using the Claude Code CLI:
claude mcp add github \
--transport http \
--url https://api.bindify.dev/mcp/github/{your-credentials}
Replace {your-credentials} with the value from your Bindify dashboard.