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
/**
* Mock for playfab-sdk module
*/
import {
mockPlayFab,
mockPlayFabAdminAPI,
mockPlayFabAuthenticationAPI,
mockPlayFabEconomyAPI,
mockPlayFabProfileAPI,
mockPlayFabServerAPI,
} from '../__tests__/mocks/playfab';
module.exports = {
PlayFab: mockPlayFab,
PlayFabAdmin: mockPlayFabAdminAPI,
PlayFabAuthentication: mockPlayFabAuthenticationAPI,
PlayFabEconomy: mockPlayFabEconomyAPI,
PlayFabProfiles: mockPlayFabProfileAPI,
PlayFabServer: mockPlayFabServerAPI,
};