# io.github.jschoemaker/mcpgo (npm · @exfil/mcpgo)

Manage your Claude Code MCPs by talking to Claude — list, restart, wrap, and more.

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

## Components

- npm · `@exfil/mcpgo`: 79/100 (this document), [markdown](https://verifymcp.io/servers/jschoemaker-mcpgo/exfil-mcpgo.md), [page](https://verifymcp.io/servers/jschoemaker-mcpgo/exfil-mcpgo)

## Channel facts

- Registry: `npm`
- Package: `@exfil/mcpgo`
- Version: `0.1.6`
- 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**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), 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 (94 of 98), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 97/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to jschoemaker/mcpgo).
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 74 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1061 tokens (~96/item across 11 items; 11 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 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 jschoemaker-mcpgo -- npx -y @exfil/mcpgo
```

### Codex

```bash
codex mcp add jschoemaker-mcpgo -- npx -y @exfil/mcpgo
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add jschoemaker-mcpgo --command npx --arg -y --arg @exfil/mcpgo
```

### Hermes

```yaml
mcp_servers:
  jschoemaker-mcpgo:
    command: "npx"
    args: ["-y", "@exfil/mcpgo"]
```

### Other

```json
{
  "mcpServers": {
    "jschoemaker-mcpgo": {
      "command": "npx",
      "args": [
        "-y",
        "@exfil/mcpgo"
      ]
    }
  }
}
```

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

- [security improvement] Install scripts: unverified → pass
- [security improvement] Provenance: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [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.
- [security] The attested source repository moved: jschoemaker/mcpgo
- [functional regression] Capabilities: pass → unverified
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] Stability: unverified → 0.20
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional] Licence: MIT

### 2026-08-01 (score 26, +5)

- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] MCP protocol: unverified → pass

### 2026-07-31 (score 21, −7)

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

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

- [security regression] Malware scan: pass → unverified

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

First indexed and scored.

## MCP tools (11)

### `list_all_mcps` (~101 tokens)

List all configured MCP servers from ~/.claude.json with their configuration. By default, values inside each server's 'env' field are redacted to '***' so this tool can't be used to exfiltrate API keys stored in MCP env. Pass show_env_values=true to reveal them when you legitimately need them.

Input parameters:

- `show_env_values` (boolean): If true, reveal raw 'env' values. Default false (values shown as '***').

### `get_mcp_details` (~68 tokens)

Get the full configuration for a specific MCP server by name.

Input parameters:

- `mcp_name` (string, required): The name of the MCP server to get details for
- `show_env_values` (boolean): If true, reveal raw 'env' values. Default false (values shown as '***').

### `check_mcp_health` (~48 tokens)

Check the health of an MCP server — whether it is configured, wrapped, and its process is running.

Input parameters:

- `mcp_name` (string, required): The name of the MCP server to check

### `restart_mcp_process` (~74 tokens)

Restart the underlying process for an MCP server by finding and killing its process. For wrapped stdio MCPs (via wrap_mcp_stdio), the wrapper will respawn automatically; otherwise you typically need to restart Claude CLI.

Input parameters:

- `mcp_name` (string, required): The name of the MCP server whose process should be restarted

### `restart_codex_mcp_process` (~84 tokens)

Restart a Codex CLI MCP server process. Works reliably only for wrapped MCPs (via wrap_codex_mcp_stdio) by killing the wrapped child PID from its pidfile; otherwise you typically need to restart Codex CLI.

Input parameters:

- `mcp_name` (string, required): The mcp_servers.<name> entry in ~/.codex/config.toml to restart

### `wrap_mcp_stdio` (~71 tokens)

Wrap a stdio MCP server so it can be restarted reliably. Updates ~/.claude.json to launch a Node wrapper that spawns the original command and respawns it when killed. Requires restarting Claude CLI to take effect.

Input parameters:

- `mcp_name` (string, required): The name of the MCP server to wrap

### `unwrap_mcp_stdio` (~50 tokens)

Unwrap a previously wrapped stdio MCP server, restoring its original command. Requires restarting Claude Code to take effect.

Input parameters:

- `mcp_name` (string, required): The name of the MCP server to unwrap

### `wrap_codex_mcp_stdio` (~91 tokens)

Wrap a Codex CLI stdio MCP server (from ~/.codex/config.toml) so it can be restarted reliably. Rewrites the MCP entry to launch mcpgo's Node wrapper that respawns the original command. Restart Codex CLI to take effect.

Input parameters:

- `mcp_name` (string, required): The mcp_servers.<name> entry in ~/.codex/config.toml to wrap

### `configure_mcp` (~160 tokens)

Update the configuration of an existing MCP server. Merges provided updates into the existing config.

Input parameters:

- `allow_footgun_args` (boolean): Set true to override the safety refusal when updates.args include code-injection flags like -e/--eval/-c.
- `allow_footgun_env` (boolean): Set true to override the safety refusal when updates.env sets a code-injection key like NODE_OPTIONS, LD_PRELOAD, PYTHONSTARTUP.
- `allow_shell_metacharacters` (boolean): Set true to override the safety refusal when 'updates.command' contains shell metacharacters.
- `mcp_name` (string, required): The name of the MCP server to configure
- `updates` (object, required): Fields to update in the MCP server config

### `remove_mcp` (~42 tokens)

Remove an MCP server from the user configuration (~/.claude/mcp.json).

Input parameters:

- `mcp_name` (string, required): The name of the MCP server to remove

### `add_mcp` (~272 tokens)

Add a new MCP server to the user configuration (~/.claude.json).

Input parameters:

- `allow_footgun_args` (boolean): Set true to override the safety refusal when args include code-injection flags like -e/--eval on node, -c on python/bash, -Command on pwsh, /c on cmd.
- `allow_footgun_env` (boolean): Set true to override the safety refusal when env sets a code-injection key like NODE_OPTIONS, LD_PRELOAD, PYTHONSTARTUP, BASH_ENV.
- `allow_shell_metacharacters` (boolean): Set true to override the safety refusal when 'command' contains shell metacharacters. Use only for genuinely shell-style commands you trust.
- `args` (array): Arguments to pass to the command
- `command` (string): Command to run (required for stdio transport)
- `env` (object): Environment variables to set for the server
- `headers` (object): HTTP headers (for http/sse transport)
- `mcp_name` (string, required): Name for the new MCP server (alphanumeric, dashes, underscores)
- `transport` (string, required): Transport type: stdio for local process, http/sse for remote server
- `url` (string): Server URL (required for http/sse transport)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/jschoemaker-mcpgo/exfil-mcpgo#diagnostics

## Score history

- 2026-08-03: 79
- 2026-08-02: 79
- 2026-08-01: 26
- 2026-07-31: 21
- 2026-07-30: 28
- 2026-07-28: 46
- 2026-07-27: 46

## Links

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