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
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
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 0 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
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 →
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
claude mcp add prohect-bind-alias-mcp -- npx -y bind-alias-mcp
codex mcp add prohect-bind-alias-mcp -- npx -y bind-alias-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"prohect-bind-alias-mcp": {
"type": "local",
"command": [
"npx",
"-y",
"bind-alias-mcp"
],
"enabled": true
}
}
} openclaw mcp add prohect-bind-alias-mcp --command npx --arg -y --arg bind-alias-mcp
mcp_servers:
prohect-bind-alias-mcp:
command: "npx"
args: ["-y", "bind-alias-mcp"] {
"mcpServers": {
"prohect-bind-alias-mcp": {
"command": "npx",
"args": [
"-y",
"bind-alias-mcp"
]
}
}
} 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.
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
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.
defineAlias ~51
Define a new alias. Returns the standard envelope.
| Name | Type | Req | Description |
|---|---|---|---|
| def | string | yes | Alias definition string (chain syntax, same as 'runAlias'). |
| name | string | yes | Alias 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).
| Name | Type | Req | Description |
|---|---|---|---|
| queries | array | — | Optional 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).
| Name | Type | Req | Description |
|---|---|---|---|
| file | string | yes | Plain 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.
| Name | Type | Req | Description |
|---|---|---|---|
| def | string | yes | 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… |
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.
| Name | Type | Req | Description |
|---|---|---|---|
| content | string | yes | Full config file content to write. |
No output schema declared.
No examples provided.
writeNotes ~49
Write a file.
| Name | Type | Req | Description |
|---|---|---|---|
| content | string | yes | Full file content to write. |
| file | string | yes | Plain filename (with extension) inside the agent directory. No path separators or '..' allowed. |
No output schema declared.
No examples provided.