WebMCP Registry

move

unverifiedv0.1

Move the player one cell in a cardinal direction. Returns success or failure with a reason.

Updated 6/6/2026 · Created 6/6/2026

Input Schema

{
  "type": "object",
  "required": [
    "direction"
  ],
  "properties": {
    "direction": {
      "enum": [
        "north",
        "south",
        "east",
        "west"
      ],
      "type": "string",
      "description": "The direction to move"
    }
  }
}

Full Contract

{
  "name": "move",
  "description": "Move the player one cell in a cardinal direction. Returns success or failure with a reason.",
  "inputSchema": {
    "type": "object",
    "required": [
      "direction"
    ],
    "properties": {
      "direction": {
        "enum": [
          "north",
          "south",
          "east",
          "west"
        ],
        "type": "string",
        "description": "The direction to move"
      }
    }
  }
}

GET /api/tool/googlechromelabs.github.io/webmcp-tools/demos/webmcp-maze/move