We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/akiojin/playfab-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
get-title-data.ts•499 B
import { Tool } from "@modelcontextprotocol/sdk/types.js";
export const GET_TITLE_DATA_TOOL: Tool = {
name: "get_title_data",
description:
"Retrieves global configuration data for the title. " +
"Can retrieve specific keys or all title data.",
inputSchema: {
type: "object",
properties: {
Keys: {
type: "array",
items: { type: "string" },
description: "Specific keys to retrieve (optional, retrieves all if not specified)."
}
},
},
}