| name | blink-github |
| description | GitHub operations via the Blink GitHub App — clone repos, push code, open pull requests, create issues, check CI, and call the GitHub REST API. No PAT needed. Connect once at blink.new/settings?tab=connectors and every surface (CLI, MCP, Claw agents) works automatically.
|
Blink GitHub
Full GitHub access backed by a workspace GitHub App installation. Tokens are
short-lived (1h), minted just-in-time server-side — no personal access token,
no gh auth login, no secrets on disk.
CLI
blink github status
blink github clone owner/repo
blink github clone https://github.com/owner/repo.git --branch feat/x
blink github token --json | jq -r .token
blink github clone owner/repo --account blink-new
blink github token --account my-employer-org
REST API (connector exec)
blink connector exec github /user/repos GET
blink connector exec github /repos/owner/repo GET
blink connector exec github /repos/owner/repo/issues POST \
'{"title":"Bug report","body":"Steps to reproduce..."}'
blink connector exec github /repos/owner/repo/pulls GET '{"state":"open"}'
blink connector exec github /repos/owner/repo/actions/runs GET '{"per_page":5}'
blink connector exec github /repos/owner/repo/contents/README.md GET
MCP Tools
Use the blink_connector_exec tool with provider: "github":
{
"tool": "blink_connector_exec",
"provider": "github",
"projectId": "proj_xxx",
"endpoint": "/repos/owner/repo/issues",
"httpMethod": "POST",
"params": { "title": "Bug", "body": "Details..." }
}
Prerequisites
Connect GitHub once at blink.new/settings?tab=connectors.
The workspace links a GitHub App installation — not a personal OAuth token.
This means:
- Works on SSO/SAML-enforced orgs (no per-token SSO dance)
- Short-lived 1h tokens — no long-lived secrets
- Revoke by uninstalling the App; no keys to rotate manually
- Multi-account: link your personal account + work orgs independently
On Blink Claw agents
git clone, git push, gh pr create work with zero setup — the Claw
image ships a system-level git credential helper that mints tokens
automatically. No gh auth login, no PAT.