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-item.ts•463 B
import { Tool } from "@modelcontextprotocol/sdk/types.js";
export const GET_ITEM_TOOL: Tool = {
name: "get_item",
description:
"Retrieves detailed information about a specific catalog item. " +
"Returns both draft and published versions if available.",
inputSchema: {
type: "object",
properties: {
ItemId: {
type: "string",
description: "The ID of the item to retrieve"
}
},
required: ["ItemId"],
},
}