We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Automattic/mcp-server-gravatar'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
interests-output-schema.json•848 B
{
"type": "object",
"properties": {
"inferredInterests": {
"type": "array",
"description": "A list of AI-inferred interests",
"items": {
"type": "object",
"description": "An interest the user has added to their profile.",
"required": [
"id",
"name"
],
"properties": {
"id": {
"type": "integer",
"description": "The unique identifier for the interest.",
"examples": [
1
]
},
"name": {
"type": "string",
"description": "The name of the interest as originally defined (most often in English).",
"examples": [
"photography"
]
}
}
}
}
},
"required": [
"inferredInterests"
]
}