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
revoke-all-bans-for-user.ts•473 B
import { Tool } from "@modelcontextprotocol/sdk/types.js";
export const REVOKE_ALL_BANS_FOR_USER_TOOL: Tool = {
name: "revoke_all_bans_for_user",
description:
"Removes all active bans for a specific player. " +
"This unbans the player completely.",
inputSchema: {
type: "object",
properties: {
PlayFabId: {
type: "string",
description: "The PlayFab ID of the player to unban."
}
},
required: ["PlayFabId"],
},
}