# io.github.Prohect/bind-alias-mcp (npm · bind-alias-mcp)

MCP bridge for BindAlias Minecraft mod: game state, screenshots, aliases, and config editing.

- Trust score: 28/100 (low)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `bind-alias-mcp`: 28/100 (this document), [markdown](https://verifymcp.io/servers/prohect-bind-alias-mcp/bind-alias-mcp.md), [page](https://verifymcp.io/servers/prohect-bind-alias-mcp/bind-alias-mcp)

## Channel facts

- Registry: `npm`
- Package: `bind-alias-mcp`
- Version: `2.1.2`
- 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**: 63/100
  - No malware found by supply-chain analysis.
  - CVE data not yet available for this package.
  - No install/post-install scripts declared.
  - Dependency-health data not yet available.
- **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 0 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 0/100
  - Schema quality not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- **Tool Coverage**: 0/100
  - Tool coverage not yet verified: we do not have a sandbox capture of the tool definitions this version of the package serves yet.
- **Capabilities**: 0/100
  - Protocol version not yet verified: we do not have a sandbox capture of the MCP handshake this version of the package performs yet.

**Unverified: 4 categories.** Categories scored 0 because our sandbox run of this package has not given us the schema these checks need to read. That is a gap on our side rather than a finding about the package, and we only credit what we can confirm, so the score stands at 0 until the capture succeeds. We are working through the fleet, so this normally clears without any action from you.

## Install

### Claude

```bash
claude mcp add prohect-bind-alias-mcp -- npx -y bind-alias-mcp
```

### Codex

```bash
codex mcp add prohect-bind-alias-mcp -- npx -y bind-alias-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add prohect-bind-alias-mcp --command npx --arg -y --arg bind-alias-mcp
```

### Hermes

```yaml
mcp_servers:
  prohect-bind-alias-mcp:
    command: "npx"
    args: ["-y", "bind-alias-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "prohect-bind-alias-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "bind-alias-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-03 (score 28)

First indexed and scored.

## MCP tools (9)

### `runAlias` (~216 tokens)

Execute a chain of aliases against the running game. SILENT FAILURES: an unknown alias name or invalid args fails that step with no thrown error. Returns the standard envelope: the state diff captured before execution, or after the nap when `nap` is given.

Input parameters:

- `def` (string, required): Alias chain definition. Space for alias(with arg) separator, backslash for alias_name-arg separator or arg-arg separator, " quotes multi-word arg preventing space inside to be parsed as alias(with ar…
- `nap` (integer): Defer the tool call's response by N client_tick. The chain runs immediately; the response then blocks until N client_tick have elapsed. The game keeps running the whole time — you cannot react to any…

### `getFullState` (~16 tokens)

Get full state and drain messages.

### `getScreenshot` (~14 tokens)

Screenshot, and standard envelope.

### `defineAlias` (~51 tokens)

Define a new alias. Returns the standard envelope.

Input parameters:

- `def` (string, required): Alias definition string (chain syntax, same as 'runAlias').
- `name` (string, required): Alias name to create (single word).

### `readCFG` (~74 tokens)

Read the cfg file, returned as plain text. cfg syntax: one command(optional leading '/') per line — alias <name> <definition>, var <name> <source>, runAlias <def>; '#' starts a comment. Read it to discover the currently defined custom aliases/variables — the live capability catalog beyond the builtins.

### `writeCFG` (~76 tokens)

Overwrite the cfg file with new content and immediately reload it. Same line format as 'readCFG'. Reloading only adds/overwrites — put "runAlias unloadCFGAll" as the first line to clear stale entries before the new content. Returns the standard envelope.

Input parameters:

- `content` (string, required): Full config file content to write.

### `readNotes` (~57 tokens)

Read the entire content of a file. Returns {"content":"..."} (empty string if the file does not exist).

Input parameters:

- `file` (string, required): Plain filename (with extension) inside the agent directory. No path separators or '..' allowed.

### `writeNotes` (~49 tokens)

Write a file.

Input parameters:

- `content` (string, required): Full file content to write.
- `file` (string, required): Plain filename (with extension) inside the agent directory. No path separators or '..' allowed.

### `listRecipes` (~178 tokens)

List recipes unlocked in the recipe book. Only works while a recipe-book screen is open (player inventory via toggleInventory, crafting table, furnace, ...). Without 'queries': returns recipes learned since the previous 'listRecipes' call (a diff — the first call after joining the world returns everything). With 'queries' (result-item ids like 'minecraft:torch' or 'torch', or locale-name substrings like 'iron sword'): every query is answered independently — matches land in 'recipes', per-query failures in 'recipe_errors'. Entries: {name, item, craftable}. craftable=true means the ingredients are in your inventory right now. Returns the standard envelope plus recipes/recipe_errors (see the 'getFullState' description).

Input parameters:

- `queries` (array): Optional list of recipe queries. Omit to list newly unlocked recipes.

## Diagnostics

Captured diagnostic sections: Provenance. The full working is on the page: https://verifymcp.io/servers/prohect-bind-alias-mcp/bind-alias-mcp#diagnostics

## Score history

- 2026-08-03: 28

## Links

- npm package: https://www.npmjs.com/package/bind-alias-mcp
- Socket report: https://socket.dev/npm/package/bind-alias-mcp
- Repository: https://github.com/Prohect/BindAlias-MCP
- Changelog RSS feed: https://verifymcp.io/servers/prohect-bind-alias-mcp/bind-alias-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/prohect-bind-alias-mcp/bind-alias-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/prohect-bind-alias-mcp/bind-alias-mcp
