Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.Prohect/bind-alias-mcp

NPM · BIND-ALIAS-MCP · SCANNED AUG 3

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

Available components

28 Trust /100
Trust breakdown (6 categories)

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. How we score →

Supply Chain Security63
  • No malware found by supply-chain analysis.Pass
  • CVE data not yet available for this package.Unverified
  • No install/post-install scripts declared.Pass
  • Dependency-health data not yet available.Unverified
Provenance & Transparency45
Schema Quality & AI Usability0
  • Schema quality not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.Unverified
Stability & Change Management0
  • Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.Unverified
Tool Coverage0
  • Tool coverage not yet verified: we do not have a sandbox capture of the tool definitions this version of the package serves yet.Unverified
Capabilities0
  • Protocol version not yet verified: we do not have a sandbox capture of the MCP handshake this version of the package performs yet.Unverified

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. How we score packages →

Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · bind-alias-mcp

# add to Claude Code
claude mcp add prohect-bind-alias-mcp -- npx -y bind-alias-mcp
# add to Codex CLI
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
    }
  }
}
# add to OpenClaw
openclaw mcp add prohect-bind-alias-mcp --command npx --arg -y --arg bind-alias-mcp
# ~/.hermes/config.yaml
mcp_servers:
  prohect-bind-alias-mcp:
    command: "npx"
    args: ["-y", "bind-alias-mcp"]
// mcp.json
{
  "mcpServers": {
    "prohect-bind-alias-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "bind-alias-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 28

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

MCP tools — 9 exposed · ~731 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
defineAlias ~51

Define a new alias. Returns the standard envelope.

NameTypeReqDescription
defstringyesAlias definition string (chain syntax, same as 'runAlias').
namestringyesAlias name to create (single word).

No output schema declared.

No examples provided.

getFullState ~16

Get full state and drain messages.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

getScreenshot ~14

Screenshot, and standard envelope.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

listRecipes ~178

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).

NameTypeReqDescription
queriesarrayOptional list of recipe queries. Omit to list newly unlocked recipes.

No output schema declared.

No examples provided.

readCFG ~74

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.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

readNotes ~57

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

NameTypeReqDescription
filestringyesPlain filename (with extension) inside the agent directory. No path separators or '..' allowed.

No output schema declared.

No examples provided.

runAlias ~216

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.

NameTypeReqDescription
defstringyesAlias 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…
napintegerDefer 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…

No output schema declared.

No examples provided.

writeCFG ~76

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.

NameTypeReqDescription
contentstringyesFull config file content to write.

No output schema declared.

No examples provided.

writeNotes ~49

Write a file.

NameTypeReqDescription
contentstringyesFull file content to write.
filestringyesPlain filename (with extension) inside the agent directory. No path separators or '..' allowed.

No output schema declared.

No examples provided.