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_INTERNAL_DATA_TOOL: Tool = {
name: "set_title_internal_data",
description:
"Sets server-only title data that is not accessible by clients. " +
"Use this for sensitive configuration like API keys, server settings, etc.",
inputSchema: {
type: "object",
properties: {
Key: {
type: "string",
description: "The key for the internal data."
},
Value: {
type: "string",
description: "The value to set (JSON string for complex data)."
}
},
required: ["Key", "Value"],
},
}