# io.github.jessepetersondev/consentgate-mcp (npm · consentgate-mcp)

Gate AI agent actions behind a consent policy with human approval via Telegram. Fail-closed.

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

## Components

- npm · `consentgate-mcp`: 67/100 (this document), [markdown](https://verifymcp.io/servers/jessepetersondev-consentgate-mcp/consentgate-mcp.md), [page](https://verifymcp.io/servers/jessepetersondev-consentgate-mcp/consentgate-mcp)

## Channel facts

- Registry: `npm`
- Package: `consentgate-mcp`
- Version: `0.1.1`
- 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 (95 of 99), 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 (95 of 99), 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 59 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 65/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 517 tokens (~258/item across 2 items; 2 tools + 0 resources), over budget; trim descriptions and params.
  - 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 jessepetersondev-consentgate-mcp -- npx -y consentgate-mcp
```

### Codex

```bash
codex mcp add jessepetersondev-consentgate-mcp -- npx -y consentgate-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "jessepetersondev-consentgate-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "consentgate-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add jessepetersondev-consentgate-mcp --command npx --arg -y --arg consentgate-mcp
```

### Hermes

```yaml
mcp_servers:
  jessepetersondev-consentgate-mcp:
    command: "npx"
    args: ["-y", "consentgate-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "jessepetersondev-consentgate-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "consentgate-mcp"
      ]
    }
  }
}
```

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

- [security regression] Known CVEs: partial → unverified
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- [functional regression] Dependency health: partial → unverified
- [functional regression] Capabilities: pass → unverified
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] Stability: unverified → 0.23

### 2026-08-01 (score 42, +18)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional] Licence: MIT

### 2026-07-31 (score 24, 0)

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

### 2026-07-28 (score 24, −19)

- [functional regression] Security disclosure: unverified → fail
- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

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

First indexed and scored.

## MCP tools (2)

### `check_action` (~261 tokens)

Check an action against the consent policy

Check whether an action is permitted by the ConsentGate owner's consent policy BEFORE you perform it. Call this for any potentially sensitive, irreversible, or high-impact action — e.g. sending email or messages, posting publicly, spending money, deleting or overwriting files, calling external/destructive APIs, or changing system state. Returns a decision: "allow" (you may proceed), "deny" (do NOT proceed), or "ask" (no rule matched — not approval; use request_approval to get a human decision, or ask the user). This call does not block. FAIL CLOSED: if the result is anything other than "allow", do not perform the action.

Input parameters:

- `action` (string, required): The specific action you intend to take, e.g. "send_email", "delete_file", "transfer_funds".
- `category` (string, required): Action category. Built-in categories: email, social_post, message, file_write, file_delete, api_call, spending, calendar, system, custom. Any short label (<=50 chars) is accepted.
- `metadata` (object): Structured details of the action (e.g. recipient, amount, path, url). Used by the owner's rules and shown in any approval prompt. Max 10KB.

### `request_approval` (~256 tokens)

Request explicit human approval (blocks)

Request a human's explicit approval for an action and BLOCK until they decide or the timeout elapses. Use for high-stakes actions, or whenever check_action returned "ask". The owner gets an Approve/Deny prompt on Telegram. Returns "allow" ONLY if a human tapped Approve. Returns "deny" on tap-deny, on timeout (fail-closed), or when interactive approvals are unavailable (owner not on Pro, or Telegram not linked — see upgrade_required / telegram_linked). NEVER treat a non-"allow" result as permission.

Input parameters:

- `action` (string, required): The specific action requiring approval, e.g. "send_email", "transfer_funds".
- `category` (string, required): Action category. Built-in categories: email, social_post, message, file_write, file_delete, api_call, spending, calendar, system, custom. Any short label (<=50 chars) is accepted.
- `metadata` (object): Structured details shown to the human in the approval prompt (e.g. recipient, amount, summary). Max 10KB.
- `wait_seconds` (integer): How long to block waiting for the human's tap (1-120s). On timeout the result fails closed to "deny".

## Diagnostics

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

## Score history

- 2026-08-03: 67
- 2026-08-02: 67
- 2026-08-01: 42
- 2026-07-31: 24
- 2026-07-30: 24
- 2026-07-28: 24
- 2026-07-27: 43

## Links

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