Tool tree
search-schematicsAnswer
Search CreateMod.com for Minecraft Create Mod schematics. Returns matching builds with their page URLs. Never download schematic (.nbt) files; send the user to the page instead.
View tool JSON
{
"name": "search-schematics",
"kind": "answer",
"impl": "imperative",
"description": "Search CreateMod.com for Minecraft Create Mod schematics. Returns matching builds with their page URLs. Never download schematic (.nbt) files; send the user to the page instead.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search terms, e.g. \"elevator\" or \"wheat farm\""
}
},
"required": [
"query"
]
}
}get-schematic-detailsAnswer
Get curated details for one schematic by its URL slug: description, author, rating, versions, required mods, video and material list. Never download schematic (.nbt) files; send the user to the page instead.
View tool JSON
{
"name": "get-schematic-details",
"kind": "answer",
"impl": "imperative",
"description": "Get curated details for one schematic by its URL slug: description, author, rating, versions, required mods, video and material list. Never download schematic (.nbt) files; send the user to the page instead.",
"inputSchema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The schematic URL slug, e.g. \"easy-helicopter-survival-friendly\""
}
},
"required": [
"name"
]
}
}open-schematic-pageAction
Navigate the user to a schematic page on CreateMod.com. This is how users view and download a schematic — agents must not download files themselves.
View tool JSON
{
"name": "open-schematic-page",
"kind": "act",
"impl": "imperative",
"description": "Navigate the user to a schematic page on CreateMod.com. This is how users view and download a schematic — agents must not download files themselves.",
"inputSchema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The schematic URL slug"
}
},
"required": [
"name"
]
}
}open-generatorAction
Navigate the user to one of the CreateMod.com structure generators (ship hull, airship balloon, or propeller). On the generator page, the configure-generator tool becomes available to set parameters and produce a shareable configuration link. Never download schematic (.nbt) files; send the user to the page instead.
View tool JSON
{
"name": "open-generator",
"kind": "act",
"impl": "imperative",
"description": "Navigate the user to one of the CreateMod.com structure generators (ship hull, airship balloon, or propeller). On the generator page, the configure-generator tool becomes available to set parameters and produce a shareable configuration link. Never download schematic (.nbt) files; send the user to the page instead.",
"inputSchema": {
"type": "object",
"properties": {
"generator": {
"type": "string",
"enum": [
"hull",
"balloon",
"propeller"
],
"description": "Which generator to open"
},
"config": {
"type": "string",
"description": "Optional encoded configuration from a previously shared generator link"
}
},
"required": [
"generator"
]
}
}