# io.github.greenmtnsun/giteasy (remote · giteasy-mcp.azurewebsites.net)

21 plain-English git tools as an MCP server. No jargon.

- Trust score: 64/100 (medium)
- Change this week: +1
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `giteasy-mcp.azurewebsites.net`: 64/100 (this document), [markdown](https://verifymcp.io/servers/greenmtnsun-giteasy/giteasy-mcp.md), [page](https://verifymcp.io/servers/greenmtnsun-giteasy/giteasy-mcp)

## Channel facts

- Endpoint: `https://giteasy-mcp.azurewebsites.net/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.5.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 46/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 22 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - HTTPS not yet verified: we couldn't determine whether a plaintext access path exists.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 85/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1329 tokens (~60/item across 22 items; 22 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http greenmtnsun-giteasy https://giteasy-mcp.azurewebsites.net/mcp
```

### Codex

```toml
[mcp_servers.greenmtnsun-giteasy]
url = "https://giteasy-mcp.azurewebsites.net/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "greenmtnsun-giteasy": {
      "type": "remote",
      "url": "https://giteasy-mcp.azurewebsites.net/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add greenmtnsun-giteasy --url https://giteasy-mcp.azurewebsites.net/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  greenmtnsun-giteasy:
    url: "https://giteasy-mcp.azurewebsites.net/mcp"
```

### Other

```json
{
  "mcpServers": {
    "greenmtnsun-giteasy": {
      "type": "http",
      "url": "https://giteasy-mcp.azurewebsites.net/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 64, +1)

No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-31 (score 63, −2)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 65, 0)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-29 (score 65, +1)

No change was recorded against any check on this day. Stability & Change Management went from 7 to 10. That category is still filling its 30-day observation window: 2 days of observed history at the previous scan, 3 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-28 (score 64, +1)

No change was recorded against any check on this day. Stability & Change Management went from 3 to 7. That category is still filling its 30-day observation window: 1 days of observed history at the previous scan, 2 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-27 (score 63, 0)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 63)

First indexed and scored.

## MCP tools (22)

### `push` (~72 tokens)

Send already-committed work to the remote without making a new commit. Pushes the current branch; on a branch's first push, sets the remote branch as its upstream automatically.

Input parameters:

- `remoteName` (string): Remote name. Default origin.
- `workingDirectory` (string): Git repo path. Default current directory.

### `show_diagnostic` (~45 tokens)

Show git repository diagnostic info: current branch, upstream, HEAD SHA, remote URLs, and status summary.

Input parameters:

- `workingDirectory` (string): Git repo path. Default current directory.

### `set_vault` (~57 tokens)

Configure the git credential helper to use a specific vault path. Returns new credential helper value.

Input parameters:

- `vaultPath` (string): Path to the credential helper vault executable.
- `workingDirectory` (string): Git repo path. Default current directory.

### `restore_file` (~60 tokens)

Restore a single file to its HEAD state, discarding uncommitted changes. Returns restored file path.

Input parameters:

- `filePath` (string): Repo-relative path to the file to restore.
- `workingDirectory` (string): Git repo path. Default current directory.

### `reset_login` (~41 tokens)

Clear stored git credentials by unsetting the credential helper in local git config. Returns confirmation.

Input parameters:

- `workingDirectory` (string): Git repo path. Default current directory.

### `set_ssh` (~80 tokens)

Change a remote URL to its SSH equivalent. Returns old and new remote URLs.

Input parameters:

- `remoteName` (string): Remote name to update. Default origin.
- `sshUrl` (string): New SSH remote URL, e.g. git@github.com:owner/repo.git.
- `workingDirectory` (string): Git repo path. Default current directory.

### `save_work` (~89 tokens)

Stage changes, commit with a message, and optionally push to remote. Returns commit SHA and push result.

Input parameters:

- `files` (array|null): Files to commit. Default empty (commits all changes).
- `message` (string): Commit message.
- `pushToRemote` (boolean): Push to remote after commit. Default false.
- `workingDirectory` (string): Git repo path. Default current directory.

### `get_vault_status` (~38 tokens)

Report current git credential helper configuration. Returns helper name and scope.

Input parameters:

- `workingDirectory` (string): Git repo path. Default current directory.

### `test_login` (~61 tokens)

Test whether git credentials are working by attempting ls-remote against the origin. Returns success/failure and remote refs count.

Input parameters:

- `remoteName` (string): Remote to test. Default origin.
- `workingDirectory` (string): Git repo path. Default current directory.

### `show_releases` (~47 tokens)

List all tags/releases in the repository, newest first. Returns tag names, target SHAs, and annotation messages.

Input parameters:

- `workingDirectory` (string): Git repo path. Default current directory.

### `show_change` (~71 tokens)

Show the diff for a specific file or all changed files. Returns unified diff text.

Input parameters:

- `filePath` (string): Repo-relative file path. If empty, shows all.
- `staged` (boolean): Show staged diff. Default false.
- `workingDirectory` (string): Git repo path. Default current directory.

### `new_release` (~91 tokens)

Create an annotated git tag and push it to the remote. Returns the tag name and target commit SHA.

Input parameters:

- `message` (string): Annotation message for the tag.
- `remoteName` (string): Remote to push to. Default origin.
- `tagName` (string): Tag name, e.g. v1.2.0.
- `workingDirectory` (string): Git repo path. Default current directory.

### `find_changes` (~45 tokens)

List changed files: staged, unstaged, and untracked. Returns file counts and paths by status group.

Input parameters:

- `workingDirectory` (string): Git repo path. Default current directory.

### `show_remote` (~44 tokens)

Show all remote names and their fetch/push URLs. Returns list of remotes with URL and type.

Input parameters:

- `workingDirectory` (string): Git repo path. Default current directory.

### `get_updates` (~55 tokens)

Fetch from remote and show incoming commits not yet in local branch. Returns count and commit summaries.

Input parameters:

- `remoteName` (string): Remote name. Default origin.
- `workingDirectory` (string): Git repo path. Default current directory.

### `undo_changes` (~74 tokens)

Discard uncommitted changes. If filePath given, restores that file; otherwise restores all tracked files. Returns list of restored paths.

Input parameters:

- `filePath` (string): Repo-relative file path to undo. If empty, undoes all tracked changes.
- `workingDirectory` (string): Git repo path. Default current directory.

### `switch_work` (~54 tokens)

Switch to an existing branch. Returns the branch switched to and current HEAD SHA.

Input parameters:

- `branchName` (string): Name of the branch to switch to.
- `workingDirectory` (string): Git repo path. Default current directory.

### `search_history` (~78 tokens)

Search commit history for commits whose message matches a search term. Returns matching commits with SHA, author, date, and message.

Input parameters:

- `limit` (integer): Max commits to return. Default 20.
- `searchTerm` (string): Text to search for in commit messages.
- `workingDirectory` (string): Git repo path. Default current directory.

### `show_history` (~70 tokens)

Show recent commit history. Returns commits with SHA, author, date, and message.

Input parameters:

- `branchName` (string): Branch name. Default current branch.
- `limit` (integer): Number of commits to return. Default 20.
- `workingDirectory` (string): Git repo path. Default current directory.

### `new_work_branch` (~57 tokens)

Create a new branch from current HEAD and switch to it. Returns branch name and base commit SHA.

Input parameters:

- `branchName` (string): Name of the new branch.
- `workingDirectory` (string): Git repo path. Default current directory.

### `set_token` (~54 tokens)

Store a personal access token for HTTP git authentication. Returns confirmation (token value is never echoed).

Input parameters:

- `token` (string): Personal access token to store.
- `workingDirectory` (string): Git repo path. Default current directory.

### `clear_junk` (~46 tokens)

Remove untracked files and directories from the working tree (git clean -fd). Returns list of removed paths.

Input parameters:

- `workingDirectory` (string): Git repo path. Default current directory.

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/greenmtnsun-giteasy/giteasy-mcp#diagnostics

## Score history

- 2026-08-03: 64
- 2026-08-02: 64
- 2026-08-01: 63
- 2026-07-31: 63
- 2026-07-30: 65
- 2026-07-29: 65
- 2026-07-28: 64
- 2026-07-27: 63
- 2026-07-26: 63

## Links

- Remote endpoint: https://giteasy-mcp.azurewebsites.net/mcp
- Repository: https://github.com/greenmtnsun/GitEasy
- Changelog RSS feed: https://verifymcp.io/servers/greenmtnsun-giteasy/giteasy-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/greenmtnsun-giteasy/giteasy-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/greenmtnsun-giteasy/giteasy-mcp
