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-news.ts•522 B
import { Tool } from "@modelcontextprotocol/sdk/types.js";
export const GET_TITLE_NEWS_TOOL: Tool = {
name: "get_title_news",
description:
"Retrieves current news items for the title. " +
"Returns all active news in chronological order. " +
"Use this to review existing news before adding new items.",
inputSchema: {
type: "object",
properties: {
Count: {
type: "number",
description: "Maximum number of news items to retrieve. Default: 10, Max: 100"
}
},
},
}