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
index.ts•514 B
/**
* Export all tool definitions
*/
// Catalog tools
export { SEARCH_ITEMS_TOOL } from './catalog/search-items'
// Inventory tools
// TODO: Export inventory tools after migration
// Player tools
// TODO: Export player tools after migration
// Title tools
// TODO: Export title tools after migration
/**
* Get all available tools as an array
*/
export function getAllTools() {
return [
// Catalog
// TODO: Add tools after importing them
// TODO: Add other tools after migration
]
}