# io.github.davidweb3-ctrl/github (npm · @davidweb3-ctrl/mcp-github-server)

GitHub MCP Server - List PRs, issues, repo info, and search code

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

## Components

- npm · `@davidweb3-ctrl/mcp-github-server`: 64/100 (this document), [markdown](https://verifymcp.io/servers/davidweb3-ctrl-github/davidweb3-ctrl-mcp-github-server.md), [page](https://verifymcp.io/servers/davidweb3-ctrl-github/davidweb3-ctrl-mcp-github-server)

## Channel facts

- Registry: `npm`
- Package: `@davidweb3-ctrl/mcp-github-server`
- Version: `1.0.0`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, 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.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (110 of 114), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (110 of 114), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 103 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 482 tokens (~80/item across 6 items; 6 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **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.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add davidweb3-ctrl-github -- npx -y @davidweb3-ctrl/mcp-github-server
```

### Codex

```bash
codex mcp add davidweb3-ctrl-github -- npx -y @davidweb3-ctrl/mcp-github-server
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "davidweb3-ctrl-github": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@davidweb3-ctrl/mcp-github-server"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add davidweb3-ctrl-github --command npx --arg -y --arg @davidweb3-ctrl/mcp-github-server
```

### Hermes

```yaml
mcp_servers:
  davidweb3-ctrl-github:
    command: "npx"
    args: ["-y", "@davidweb3-ctrl/mcp-github-server"]
```

### Other

```json
{
  "mcpServers": {
    "davidweb3-ctrl-github": {
      "command": "npx",
      "args": [
        "-y",
        "@davidweb3-ctrl/mcp-github-server"
      ]
    }
  }
}
```

## 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, +28)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional] Licence: MIT

### 2026-08-01 (score 36, +8)

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

### 2026-07-31 (score 28, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 46)

First indexed and scored.

## MCP tools (6)

### `github_pr_list` (~124 tokens)

List pull requests for a GitHub repository with filtering options

Input parameters:

- `base` (string): Filter by base branch
- `direction` (string): Sort direction
- `head` (string): Filter by head branch (format: user:branch)
- `owner` (string, required): Repository owner (username or organization)
- `page` (number): Page number
- `per_page` (number): Results per page (max 100)
- `repo` (string, required): Repository name
- `sort` (string): Sort field
- `state` (string): Filter by PR state

### `github_pr_view` (~61 tokens)

View details of a specific pull request including optional diff

Input parameters:

- `include_diff` (boolean): Include the diff content
- `owner` (string, required): Repository owner
- `pull_number` (number, required): Pull request number
- `repo` (string, required): Repository name

### `github_issue_list` (~125 tokens)

List issues for a GitHub repository with filtering options

Input parameters:

- `assignee` (string): Filter by assignee username
- `creator` (string): Filter by creator username
- `direction` (string): Sort direction
- `labels` (string): Comma-separated list of label names
- `owner` (string, required): Repository owner
- `page` (number): Page number
- `per_page` (number): Results per page
- `repo` (string, required): Repository name
- `sort` (string): Sort field
- `state` (string): Filter by issue state

### `github_issue_view` (~58 tokens)

View details of a specific issue including optional comments

Input parameters:

- `include_comments` (boolean): Include issue comments
- `issue_number` (number, required): Issue number
- `owner` (string, required): Repository owner
- `repo` (string, required): Repository name

### `github_repo_info` (~38 tokens)

Get detailed information and statistics about a GitHub repository

Input parameters:

- `owner` (string, required): Repository owner
- `repo` (string, required): Repository name

### `github_search_code` (~76 tokens)

Search for code across GitHub repositories using GitHub code search syntax

Input parameters:

- `order` (string): Sort order
- `page` (number): Page number
- `per_page` (number): Results per page
- `query` (string, required): Search query (GitHub code search syntax)
- `sort` (string): Sort field

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/davidweb3-ctrl-github/davidweb3-ctrl-mcp-github-server#diagnostics

## Score history

- 2026-08-03: 64
- 2026-08-02: 64
- 2026-08-01: 36
- 2026-07-31: 28
- 2026-07-30: 46
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/@davidweb3-ctrl/mcp-github-server
- Socket report: https://socket.dev/npm/package/@davidweb3-ctrl/mcp-github-server
- Repository: https://github.com/davidweb3-ctrl/mcp-github-server
- Changelog RSS feed: https://verifymcp.io/servers/davidweb3-ctrl-github/davidweb3-ctrl-mcp-github-server/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/davidweb3-ctrl-github/davidweb3-ctrl-mcp-github-server/changelog.json
- HTML version of this page: https://verifymcp.io/servers/davidweb3-ctrl-github/davidweb3-ctrl-mcp-github-server
