MCP server intelligence profile

mcp-minecraft MCP Server

A Minecraft MCP Server powered by Mineflayer API. It allows to control a Minecraft character in real-time, allowing AI assistants to build structures, explore the world, and interact with the game environment through natural language instruction

Local Onlyyuniko-software
Awaiting current scanNpm · 1.2.0

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
17Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install minecraft-mcp-server from npm

Version 1.2.0 declares 1 executable entrypoint.

npm install --save-exact minecraft-mcp-server@1.2.0
npx -y -p minecraft-mcp-server@1.2.0 minecraft-mcp-server
MCP client configuration example
{
  "mcpServers": {
    "minecraft-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "minecraft-mcp-server@1.2.0",
        "minecraft-mcp-server"
      ]
    }
  }
}

Identity

Canonical slugmcp-minecraft-43075709DeploymentLocal Only
Canonical packagenpm:minecraft-mcp-serverRepositoryyuniko-software/minecraft-mcp-server
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmminecraft-mcp-server1.2.01Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmminecraft-mcp-server1.2.0CurrentSep 5, 202617 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
minecraft-botServer-reported name
1Capability groups
Aug 15, 2026Observed

Tools 17

ToolCategoryAnnotationsRisk
detect-gamemodeDetect the gamemode on game
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {}
}
dig-blockDig a block at the specified position
Input schema
{
  "type": "object",
  "properties": {
    "x": {
      "type": "number",
      "description": "X coordinate"
    },
    "y": {
      "type": "number",
      "description": "Y coordinate"
    },
    "z": {
      "type": "number",
      "description": "Z coordinate"
    }
  },
  "required": [
    "x",
    "y",
    "z"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
equip-itemEquip a specific item
Input schema
{
  "type": "object",
  "properties": {
    "itemName": {
      "type": "string",
      "description": "Name of the item to equip"
    },
    "destination": {
      "type": "string",
      "description": "Where to equip the item (default: 'hand')"
    }
  },
  "required": [
    "itemName"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
find-blockFind the nearest block of a specific type
Input schema
{
  "type": "object",
  "properties": {
    "blockType": {
      "type": "string",
      "description": "Type of block to find"
    },
    "maxDistance": {
      "type": "number",
      "description": "Maximum search distance (default: 16)"
    }
  },
  "required": [
    "blockType"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
find-entityFind the nearest entity of a specific type
Input schema
{
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Type of entity to find (empty for any entity)"
    },
    "maxDistance": {
      "type": "number",
      "description": "Maximum search distance (default: 16)"
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
find-itemFind a specific item in the bot's inventory
Input schema
{
  "type": "object",
  "properties": {
    "nameOrType": {
      "type": "string",
      "description": "Name or type of item to find"
    }
  },
  "required": [
    "nameOrType"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
fly-toMake the bot fly to a specific position
Input schema
{
  "type": "object",
  "properties": {
    "x": {
      "type": "number",
      "description": "X coordinate"
    },
    "y": {
      "type": "number",
      "description": "Y coordinate"
    },
    "z": {
      "type": "number",
      "description": "Z coordinate"
    }
  },
  "required": [
    "x",
    "y",
    "z"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get-block-infoGet information about a block at the specified position
Input schema
{
  "type": "object",
  "properties": {
    "x": {
      "type": "number",
      "description": "X coordinate"
    },
    "y": {
      "type": "number",
      "description": "Y coordinate"
    },
    "z": {
      "type": "number",
      "description": "Z coordinate"
    }
  },
  "required": [
    "x",
    "y",
    "z"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get-positionGet the current position of the bot
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {}
}
jumpMake the bot jump
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {}
}
list-inventoryList all items in the bot's inventory
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {}
}
look-atMake the bot look at a specific position
Input schema
{
  "type": "object",
  "properties": {
    "x": {
      "type": "number",
      "description": "X coordinate"
    },
    "y": {
      "type": "number",
      "description": "Y coordinate"
    },
    "z": {
      "type": "number",
      "description": "Z coordinate"
    }
  },
  "required": [
    "x",
    "y",
    "z"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
move-in-directionMove the bot in a specific direction for a duration
Input schema
{
  "type": "object",
  "properties": {
    "direction": {
      "type": "string",
      "enum": [
        "forward",
        "back",
        "left",
        "right"
      ],
      "description": "Direction to move"
    },
    "duration": {
      "type": "number",
      "description": "Duration in milliseconds (default: 1000)"
    }
  },
  "required": [
    "direction"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
move-to-positionMove the bot to a specific position
Input schema
{
  "type": "object",
  "properties": {
    "x": {
      "type": "number",
      "description": "X coordinate"
    },
    "y": {
      "type": "number",
      "description": "Y coordinate"
    },
    "z": {
      "type": "number",
      "description": "Z coordinate"
    },
    "range": {
      "type": "number",
      "description": "How close to get to the target (default: 1)"
    }
  },
  "required": [
    "x",
    "y",
    "z"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
place-blockPlace a block at the specified position
Input schema
{
  "type": "object",
  "properties": {
    "x": {
      "type": "number",
      "description": "X coordinate"
    },
    "y": {
      "type": "number",
      "description": "Y coordinate"
    },
    "z": {
      "type": "number",
      "description": "Z coordinate"
    },
    "faceDirection": {
      "type": "string",
      "enum": [
        "up",
        "down",
        "north",
        "south",
        "east",
        "west"
      ],
      "description": "Direction to place against (default: 'down')"
    }
  },
  "required": [
    "x",
    "y",
    "z"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
read-chatGet recent chat messages from players
Input schema
{
  "type": "object",
  "properties": {
    "count": {
      "type": "number",
      "description": "Number of recent messages to retrieve (default: 10, max: 100)"
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
send-chatSend a chat message in-game
Input schema
{
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "description": "Message to send in chat"
    }
  },
  "required": [
    "message"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

mcp-minecraft MCP Server questions

How do I install mcp-minecraft MCP Server?

Install the selected package version with: npm install --save-exact minecraft-mcp-server@1.2.0

What tools does mcp-minecraft MCP Server provide?

mcp-minecraft MCP Server exposed 17 tools during independent protocol observation, including detect-gamemode, dig-block, equip-item, find-block, find-entity, find-item, fly-to, get-block-info, and others.

Is mcp-minecraft MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.