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
faction.schema.json•929 B
{
"name": "add_faction",
"description": "A faction or organization operating within the game world.",
"properties": {
"name": {
"type": "string",
"description": "The name of the faction or organization.",
"required": true
},
"type": {
"type": "string",
"description": "The type of the faction.",
"required": true
},
"description": {
"type": "string",
"description": "A detailed description of the faction.",
"required": true
},
"goals": {
"type": "array",
"description": "The main objectives or goals of the faction.",
"required": false
},
"leader": {
"type": "string",
"description": "The leader of the faction.",
"required": false,
"relationship": {
"edgeType": "led_by",
"description": "The entity leading this faction."
}
}
},
"additionalProperties": true
}