Free tier — 500 write calls / month, no credit card. Get a key instantly from the pricing page, or call the endpoint directly:
POST https://giteasy-mcp.azurewebsites.net/keys/free
Content-Type: application/json
{ "email": "you@example.com" }
Response:
{ "apiKey": "ge_...", "tier": "free", "monthlyLimit": 500 }
Calling again with the same email returns the same key (idempotent). Paid plans are on the pricing page — your key arrives by email after checkout.
Claude Desktop — edit %APPDATA%\Claude\claude_desktop_config.json (Windows) or ~/Library/Application Support/Claude/claude_desktop_config.json (macOS), then restart. The 21 tools appear automatically.
{
"mcpServers": {
"giteasy": {
"type": "http",
"url": "https://giteasy-mcp.azurewebsites.net/mcp",
"headers": { "X-Api-Key": "ge_your_key_here" }
}
}
}
Cursor — Settings → MCP → Add Server, choose HTTP, and enter:
- URL:
https://giteasy-mcp.azurewebsites.net/mcp - Header name:
X-Api-Key - Header value:
ge_your_key_here
Any MCP-compatible client — the server uses standard MCP Streamable HTTP. Point your client at https://giteasy-mcp.azurewebsites.net/mcp and include X-Api-Key: ge_your_key_here on every request.
Save and publish
save_work | Stage everything, commit, and push |
find_changes | List changed files by status |
show_change | Show the diff for a file or all files |
undo_changes | Discard uncommitted changes |
restore_file | Restore one file to its last saved state |
Branches and releases
new_work_branch | Create a branch and switch to it |
switch_work | Switch to an existing branch |
new_release | Create an annotated tag and push it |
show_releases | List all tags, newest first |
History and status
show_history | Show recent commits |
search_history | Search commits by message keyword |
show_diagnostic | Branch, upstream, HEAD SHA, remote URLs |
show_remote | All remote names and URLs |
get_updates | Fetch and show incoming commits |
clear_junk | Remove untracked files and directories |
Credentials
set_token | Store a personal access token |
set_ssh | Switch a remote from HTTPS to SSH |
set_vault | Configure a credential vault path |
reset_login | Clear stored credentials |
get_vault_status | Show current credential helper |
test_login | Test credentials against the remote |
| Tier | Write calls / month | Cost |
|---|---|---|
| Free | 500 | $0 — no credit card |
| Dev | 2,000 | $19 / mo |
| SinglePro | 50,000 | $79 / mo |
| Team | 250,000 | $99 / mo |
| Business | 1,000,000 | $999 / mo |
| Enterprise | Unlimited (fair use) | $2,500 / mo |
Read tools (show_history, find_changes, show_diagnostic, and the rest) don’t count against your limit. You get an email warning at 80% and a hard stop at 100%. Upgrade, downgrade, or cancel anytime on the pricing page.
- 401 Unauthorized — missing or invalid
X-Api-Keyheader. Check the name is exactlyX-Api-Keyand the value starts withge_. - 429 Too Many Requests — you’ve reached your monthly write-call limit. All tool calls pause until your counter resets on the 1st of next month — or upgrade for a higher limit. (Read tools don’t add to the count, but they’re paused too once you’re at the cap.)
- Key not arriving after purchase — check your spam folder for email from
noreply@detentpoint.comand whitelist the address.