MemoryMesh

add_transportation

Enables users to define and store transportation details for characters or entities, including name, description, type, and ownership relationships, within the MemoryMesh MCP server.

Instructions

Represents a transportation owned or used by a character or entity.

Input Schema

NameRequiredDescriptionDefault
transportationYes

Input Schema (JSON Schema)

{ "properties": { "transportation": { "additionalProperties": { "description": "Additional property value", "type": "string" }, "properties": { "description": { "description": "A brief description of the vehicle.", "type": "string" }, "name": { "description": "The name of the vehicle.", "type": "string" }, "owner": { "description": "The relationship between the vehicle and its owner.", "items": { "description": "Item in owner array", "type": "string" }, "type": "array" }, "type": { "description": "The type or class of the vehicle (e.g., car, spaceship, boat, horse).", "type": "string" } }, "required": [ "name", "description", "owner", "type" ], "type": "object" } }, "required": [ "transportation" ], "type": "object" }
ID: kf6n6221pd