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
import { Tool } from "@modelcontextprotocol/sdk/types.js";
export const SET_TITLE_DATA_TOOL: Tool = {
name: "set_title_data",
description:
"Sets global game configuration visible to ALL players. Use for: " +
"1) Game version info, 2) Event schedules, 3) Feature flags, 4) Global settings. " +
"Format: Key-value pairs. Value can be JSON string for complex data. " +
"WARNING: This is PUBLIC data - use set_title_internal_data for sensitive configs!",
inputSchema: {
type: "object",
properties: {
Key: {
type: "string",
description: "The key for the title data."
},
Value: {
type: "string",
description: "The value to set (JSON string for complex data)."
}
},
required: ["Key", "Value"],
},
}