We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/CheMiguel23/MemoryMesh'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
inventory.schema.json•670 B
{
"name": "add_inventory",
"description": "A collection of items or equipment belonging to a character, entity, or location.",
"properties": {
"name": {
"type": "string",
"description": "[Entity]_inventory.",
"required": true
},
"owner": {
"type": "string",
"description": "The owner of this inventory.",
"required": true,
"relationship": {
"edgeType": "owned_by",
"description": "The entity that owns this inventory."
}
},
"items": {
"type": "array",
"description": "List of items in the inventory.",
"required": true
}
},
"additionalProperties": true
}