{"name":"io.github.TanerTalas/codecraft","slug":"tanertalas-codecraft","title":"CodeCraft","description":"Checks whether generated Minecraft Bedrock content will actually load. Nine read-only tools.","url":"https://mcp.market/server/tanertalas-codecraft","rating":null,"grade":"A","score":91,"certified":false,"status":"active","category":"other","tags":[],"presence":{"score":23,"stars":0,"forks":0,"downloads_week":null,"last_push_at":"2026-09-05T14:36:08.000Z","license":"Apache-2.0"},"uptime":{"percent":100,"checks":6,"ok":6,"last_checked_at":"2026-09-20T21:51:21.830Z","last_ok_at":"2026-09-20T21:51:21.830Z","latency_ms":504},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":"https://github.com/TanerTalas/codecraft","website":"https://codecraft-ashy-seven.vercel.app","version":"0.1.0","remotes":[{"type":"streamable-http","url":"https://codecraft-ashy-seven.vercel.app/mcp"}],"packages":[],"tools":[{"name":"check_feasibility","description":"Checks whether a user request can be built with a behavior pack and the @minecraft/server API. If it is blocked, returns why, the evidence behind that rule, and a workable alternative. Call this BEFORE writing any code or JSON: input simulation, file system access and network access do not exist in the Bedrock scripting API, and those are the most commonly hallucinated APIs.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"request":{"type":"string","minLength":1,"description":"The user request in their own words. Any language is accepted."}},"required":["request"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_schema","description":"Summarises the schema of a Bedrock document type: required fields, valid format_version values, and the name, type and description of every field on that node. It does not return the raw schema — that is far too large. When a node has many fields the summary narrows and says what was shortened in the truncated field; use path to descend into a child node for full detail. Call this before writing a file to learn which fields are required and what format_version must be.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"type":{"type":"string","minLength":1,"description":"Document type, e.g. \"behavior/blocks\", \"behavior/entities\", \"behavior/spawn_rules\". The full list is in the get_version_info output."},"path":{"description":"Path to descend into the schema, separated by \"/\". For example \"minecraft:entity\" or \"minecraft:entity/components/minecraft:health\". Omit it to get the root summary. An unresolvable path returns an error that lists the valid fields on that node.","type":"string"},"version":{"description":"Game version under data/, e.g. 1.26.40 or 1.26.40.5. Defaults to the newest available version. Marketing numbers (26.40) are rejected.","type":"string"}},"required":["type"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_version_info","description":"Returns which version number belongs where for this game version: min_engine_version (a three-part array), @minecraft/server module versions, the valid format_version values for every document type, and the list of recognised document types. format_version is an axis of its own and is unrelated to the game version. Call this before writing any behavior pack file.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"version":{"description":"Game version under data/, e.g. 1.26.40 or 1.26.40.5. Defaults to the newest available version. Marketing numbers (26.40) are rejected.","type":"string"}},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"lookup_id","description":"Tells you whether a minecraft: identifier actually exists in this version and what kind it is (block, item, entity, biome, effect, enchantment, feature, dimension, camera preset, particle, potion). For a block it also returns the valid block states and the values they accept. An identifier without a namespace is treated as minecraft:. Verify every identifier here before writing it — an identifier that does not exist fails silently in the game.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"id":{"type":"string","minLength":1,"description":"Identifier, e.g. \"minecraft:blaze\" or just \"blaze\" without the namespace."},"version":{"description":"Game version under data/, e.g. 1.26.40 or 1.26.40.5. Defaults to the newest available version. Marketing numbers (26.40) are rejected.","type":"string"}},"required":["id"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"review_pack","description":"Validates every file of a behavior or resource pack in one call: it applies the right validator to each file (JSON schema, script compilation, command syntax) and then runs the checks a schema structurally cannot do — identifier consistency, filename rules, manifest module type, texture keys, component names, Molang queries and loot/trade table paths. This is the LAST step before handing a pack to the user, and it is both faster and broader than validating each file separately.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"files":{"minItems":1,"type":"array","items":{"type":"object","properties":{"path":{"type":"string","minLength":1,"description":"Path inside the pack, e.g. \"behavior_packs/ruby/blocks/ruby_ore.json\"."},"content":{"type":"string","description":"The complete file content."}},"required":["path","content"]},"description":"The files in the pack. Include the manifest — several checks depend on it."},"version":{"description":"Game version under data/, e.g. 1.26.40 or 1.26.40.5. Defaults to the newest available version. Marketing numbers (26.40) are rejected.","type":"string"}},"required":["files"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"validate_command","description":"Validates a single Bedrock command line against the official command index: does the command exist, does the argument count match, are the selectors and block states valid. When no overload matches it returns the valid usages, and it tells you whether the command requires cheats. Run every command through this before giving it to the user. `execute ... run <command>` chains are resolved: the command after run is validated too, including nested execute.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"line":{"type":"string","minLength":1,"description":"A single command line, e.g. \"/give @p diamond 1\". The leading / is optional."},"version":{"description":"Game version under data/, e.g. 1.26.40 or 1.26.40.5. Defaults to the newest available version. Marketing numbers (26.40) are rejected.","type":"string"}},"required":["line"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"validate_json","description":"Validates a behavior or resource pack JSON file against the official schema and returns the JSON pointer, the violated rule and a readable message for every error. Unexpected property names and the valid enum values are included in the message. Run every JSON file you produce through this before handing it to the user.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"content":{"type":"string","minLength":1,"description":"The complete file content as text. Parse errors are reported too."},"type":{"type":"string","minLength":1,"description":"Document type. A canonical name (\"behavior/blocks/blocks\"), a short form (\"behavior/blocks\") or a file path (\"BP/blocks/ruby.json\") are all accepted. The list of recognised types is in the get_version_info output."},"version":{"description":"Game version under data/, e.g. 1.26.40 or 1.26.40.5. Defaults to the newest available version. Marketing numbers (26.40) are rejected.","type":"string"}},"required":["content","type"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"validate_python","description":"Validates a Python automation script that runs OUTSIDE the game, on three axes: Python syntax (using the real interpreter), Minecraft commands embedded in the script (against the official command index), and the shape of the /connect WebSocket message envelope. For behavior pack scripts use validate_script instead — Python does not run inside a pack. The embedded command check is the most valuable one: a command written from memory can look syntactically fine and still do nothing in the game. Only strings starting with / are treated as commands. If syntax could not be checked, syntaxChecked is false in the result; ok:true alone does not mean the syntax is valid.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"code":{"type":"string","minLength":1,"description":"The complete Python script content."},"version":{"description":"Game version under data/, e.g. 1.26.40 or 1.26.40.5. Defaults to the newest available version. Marketing numbers (26.40) are rejected.","type":"string"}},"required":["code"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"validate_script","description":"Compiles a behavior pack script with the real TypeScript compiler against the actual @minecraft/server type definitions for that version. Returns diagnostics with line, column, TS error code and message, and reports which module versions it compiled against. Catch non-existent APIs and calls removed in later versions here — Bedrock scripting APIs written from memory are the most common source of output that fails silently.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"code":{"type":"string","minLength":1,"description":"The complete script content. JavaScript or TypeScript."},"version":{"description":"Game version under data/, e.g. 1.26.40 or 1.26.40.5. Defaults to the newest available version. Marketing numbers (26.40) are rejected.","type":"string"},"channel":{"description":"Module channel. Defaults to stable. If beta is requested but a module has no beta release it falls back to stable — the modules field in the result says which version each module was compiled against.","type":"string","enum":["stable","beta"]}},"required":["code"],"$schema":"http://json-schema.org/draft-07/schema#"}}],"scan":{"score":91,"grade":"A","scanned_at":"2026-09-20T11:39:51.207Z","report":{"scannerVersion":"0.1.9","scannedAt":"2026-09-20T11:39:51.121Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 649ms"]},"poisoning":{"score":15,"max":15,"notes":["9 tool descriptions checked"]},"auth":{"score":10,"max":15,"notes":["open endpoint, read-only tools"]},"maintenance":{"score":15,"max":15,"notes":["last push 15 days ago"]},"identity":{"score":8,"max":10,"notes":["registry namespace matches repository owner","GitHub account older than a year"]}},"findings":[],"inputs":{"probes":[{"url":"https://codecraft-ashy-seven.vercel.app/mcp","reachable":true,"authRequired":false,"latencyMs":649,"serverInfo":{"name":"codecraft","version":"0.1.0"}}],"packages":[],"repo":{"found":true,"owner":"TanerTalas","repo":"codecraft","archived":false,"pushedAt":"2026-09-05T14:36:08Z","stars":0,"forks":0,"openIssues":1,"ownerType":"User","ownerAvatarUrl":"https://avatars.githubusercontent.com/u/203338647?v=4","ownerCreatedAt":"2025-03-14T17:27:49Z","license":"Apache-2.0"},"icon":{"url":"https://avatars.githubusercontent.com/u/203338647?v=4&s=128","source":"github"},"presence":{"stars":0,"forks":0,"downloadsWeek":null,"license":"Apache-2.0","lastPushAt":"2026-09-05T14:36:08.000Z","score":23}}}},"grade_history":[],"reviews":[]}