Skip to main content
Glama

PlayFab MCP Server

by akiojin

PlayFab MCP Server

What Is This? 🤔

This server is a middleware that enables large language models (like Claude and VS Code) to interact directly with PlayFab services. Acting as a secure and efficient translator, it connects your AI assistant with various PlayFab functionalities, such as item search, segment inquiries, player profile lookups, inventory management, and PlayFab ID conversion.

Quick Example

You: "Show me the latest 10 items." Claude: *calls the PlayFab search_items API and returns the results in plain text*

How Does It Work? 🛠️

This server leverages the Model Context Protocol (MCP) to establish a universal interface between AI models and PlayFab services. Although MCP is designed to support any AI model, it is currently available as a developer preview.

Follow these steps to get started:

  1. Set up your project.
  2. Add your project details to your LLM client's configuration.
  3. Start interacting with PlayFab data naturally!

What Can It Do? 📊

  • Search for items using PlayFab's search_items API.
  • Catalog Management (Economy v2):
    • Create new draft items with the create_draft_item API.
    • Update existing draft items with the update_draft_item API.
    • Delete items from catalog with the delete_item API.
    • Publish draft items to make them available with the publish_draft_item API.
    • Get detailed item information with the get_item API.
Player Management
  • Retrieve comprehensive segment information.
  • Query player profiles within specified segments.
  • Convert a PlayFab ID to a Title Player Account ID via the get_title_player_account_id_from_playfab_id API.
  • Get detailed user account information with the get_user_account_info API.
Inventory Management
  • Get Operations:
    • Retrieve current inventory items with the get_inventory_items API.
    • Fetch inventory collection IDs using the get_inventory_collection_ids API.
  • Add/Remove Operations:
    • Add items to inventory with the add_inventory_items API.
    • Delete items from inventory with the delete_inventory_items API.
    • Subtract specific amounts with the subtract_inventory_items API.
  • Modify Operations:
    • Update item properties with the update_inventory_items API.
Economy v2 Administration
  • Execute batch inventory operations with the execute_inventory_operations API.
  • Note: In Economy v2, virtual currencies are managed as inventory items.
User Account Administration
  • Ban players by ID, IP, or MAC address with the ban_users API.
  • Unban players completely with the revoke_all_bans_for_user API.
Player Data Management
  • Retrieve player custom data with the get_user_data API.
  • Update player custom data with the update_user_data API.
Title Configuration Management
  • Set global title data with the set_title_data API.
  • Retrieve title data with the get_title_data API.
  • Set server-only internal data with the set_title_internal_data API.
  • Retrieve internal data with the get_title_internal_data API.

Quick Start 🚀

Installing via Smithery

To install PlayFab MCP Server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @akiojin/playfab-mcp-server --client claude

Prerequisites

  • Node.js 18 or higher.
  • A valid PlayFab account (obtain your Title ID and Developer Secret Key via PlayFab Game Manager).
  • A supported LLM client such as Claude Desktop.

Set Up Your Project

Obtain your PlayFab Title ID and Developer Secret Key from the PlayFab Game Manager, then create a .env file in the project root with the following content (replace the placeholders with your actual credentials):

PLAYFAB_TITLE_ID= PLAYFAB_DEV_SECRET_KEY=

Installation and Setup

  1. Install DependenciesIn the project root, run the following command to install all necessary dependencies:
    npm install
  2. Build the ProjectCompile the project by executing:
    npm run build
  3. Start the ServerStart the server by executing:
    npm start
  4. Confirmation MessageUpon startup, you should see this message:
    PlayFab Server running on stdio

Development Setup

Code Quality Tools
  • ESLint: Configured for TypeScript with recommended rules for code consistency
  • Prettier: Automatic code formatting with project-specific settings
  • TypeScript: Strict mode enabled for enhanced type safety
  • Jest: Testing framework configured for TypeScript
Available Scripts
# Build the project npm run build # Development mode with file watching npm run watch # TypeScript type checking npm run typecheck # Run ESLint npm run lint # Run ESLint and fix issues npm run lint:fix # Format code with Prettier npm run format # Check code formatting npm run format:check # Run tests npm test # Run tests in watch mode npm run test:watch # Run tests with coverage npm run test:coverage
TypeScript Configuration

This project uses TypeScript with strict mode enabled, ensuring:

  • Strict null checks
  • No implicit any types
  • Strict function types
  • Always strict mode
Testing

Tests are written using Jest and can be found in __tests__ directories or files with .test.ts extension. Run tests before committing changes to ensure code quality.

Running with Cursor

To use the PlayFab MCP server with Cursor, follow these steps:

  1. Install Cursor Desktop if you haven't already.
  2. Open a new instance of Cursor in an empty folder.
  3. Copy the mcp.json file from this repository into your folder and update the values according to your environment.
  4. Launch Cursor; the PlayFab MCP Server should appear in the tools list.
  5. For example, try a prompt like "Show me the latest 10 items" to verify that the server processes your query correctly.

Adding Your Project Details to Claude Desktop's Config File

Open Claude Desktop and navigate to File → Settings → Developer → Edit Config. Then, replace the claude_desktop_config file content with the following snippet:

{ "mcpServers": { "playfab": { "command": "npx", "args": [ "-y", "@akiojin/playfab-mcp-server" ], "env": { "PLAYFAB_TITLE_ID": "Your PlayFab Title ID", "PLAYFAB_DEV_SECRET_KEY": "Your PlayFab Developer Secret Key" } } } }

With these steps, you have successfully configured the PlayFab MCP server for use with your LLM client, allowing seamless interaction with PlayFab's services.

Contributing

Commit Message Convention

This project follows Conventional Commits for automated versioning and release.

Commit Message Format
<type>(<scope>): <subject> <body> <footer>
Types
  • feat: A new feature (triggers MINOR version bump)
  • fix: A bug fix (triggers PATCH version bump)
  • docs: Documentation only changes
  • style: Changes that do not affect the meaning of the code
  • refactor: A code change that neither fixes a bug nor adds a feature
  • perf: A code change that improves performance
  • test: Adding missing tests or correcting existing tests
  • chore: Changes to the build process or auxiliary tools
Version Bumping Rules
  • MAJOR version: When commit message contains BREAKING CHANGE in footer or ! after type/scope
    • Example: feat!: remove deprecated API endpoints
    • Example: feat: new API\n\nBREAKING CHANGE: removed old endpoints
  • MINOR version: When commit type is feat
    • Example: feat: add new PlayFab API integration
  • PATCH version: When commit type is fix
    • Example: fix: correct error handling in API calls

Release Process

1. Update Version and Changelog
# Analyze commits and update CHANGELOG.md # Then bump version based on changes: npm version patch # or minor/major
2. Push Changes and Tag
# Push the version commit git push origin main # Push the version tag created by npm version git push origin --tags
3. Automatic Release & Publish

When a v* tag is pushed, the release-and-publish.yml workflow automatically:

  • Creates a GitHub Release with release notes
  • Publishes the package to npm
  • Attaches release assets
Repository Prerequisites
  • NPM_TOKEN secret must be set in repository settings for npm publishing
  • DEPENDABOT_PAT secret must be set for auto-approving Dependabot PRs:
    1. Create a Personal Access Token (PAT) with repo and workflow permissions
    2. Go to Settings → Secrets and variables → Actions
    3. Add a new secret named DEPENDABOT_PAT with your PAT value
  • Branch protection rules must be configured for auto-merge to work:
    1. Go to Settings → Branches
    2. Add rule for main branch
    3. Enable "Require a pull request before merging"
    4. Enable "Require status checks to pass before merging"
    5. Add required status checks: build (18.x), build (20.x), build (22.x)

Scripts Reference

ScriptDescription
npm startStart the MCP server
npm run buildBuild TypeScript to JavaScript
npm run watchBuild in watch mode for development
npm run typecheckRun TypeScript type checking
npm run lintRun ESLint checks
npm run lint:fixFix ESLint issues automatically
npm run formatFormat code with Prettier
npm run format:checkCheck code formatting
npm testRun all tests
npm run test:watchRun tests in watch mode
npm run test:coverageGenerate test coverage report

Security

We take security seriously. If you discover a security vulnerability within this project, please follow these steps:

Reporting Security Vulnerabilities

  1. DO NOT create a public GitHub issue for security vulnerabilities
  2. Instead, please report security issues via GitHub's private vulnerability reporting:
    • Go to the Security tab of this repository
    • Click on Report a vulnerability
    • Provide detailed information about the vulnerability

What We Need From You

  • A description of the vulnerability
  • Steps to reproduce the issue
  • Potential impact
  • Any suggested fixes (optional)

Our Commitment

  • We will acknowledge receipt of your report within 48 hours
  • We will provide regular updates on our progress
  • We will credit you for the discovery (unless you prefer to remain anonymous)

Security Best Practices

When using this server:

  1. Never commit credentials: Always use environment variables for sensitive data
  2. Keep dependencies updated: Regularly run npm audit and update packages
  3. Use least privilege: Only grant the minimum required permissions
  4. Rotate keys regularly: Change your PlayFab Developer Secret Keys periodically

Support

Getting Help

If you encounter any issues or have questions about using the PlayFab MCP Server, here are the best ways to get support:

  1. GitHub Issues: For bug reports and feature requests, please create an issue
  2. Discussions: For general questions and community support, use GitHub Discussions
  3. Documentation: Check the README and code comments for usage examples

Before Creating an Issue

Please check if your issue has already been reported by searching existing issues. If you find a similar issue, you can add additional information as a comment.

What We Support

  • Installation and setup questions
  • Bug reports with reproducible steps
  • Feature requests and suggestions
  • Documentation improvements

What We Don't Support

  • General PlayFab API questions (please refer to PlayFab Documentation)
  • Issues with third-party tools or services
  • Custom implementation requests

License

This project is licensed under the MIT License - see the LICENSE file for details.

Install Server
A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

hybrid server

The server is able to function both locally and remotely, depending on the configuration or use case.

A server that enables LLMs (like Claude and VSCode Copilot) to interact with Azure Cosmos DB data through natural language queries, acting as a translator between AI assistants and your database.

  1. What Is This? 🤔
    1. Quick Example
  2. How Does It Work? 🛠️
    1. What Can It Do? 📊
  3. Quick Start 🚀
    1. Installing via Smithery
    2. Prerequisites
    3. Set Up Your Project
    4. Getting Started
    5. Running with Cursor
    6. Adding Your Project Details to Claude Desktop's Config File

Related MCP Servers

  • -
    security
    A
    license
    -
    quality
    This is a server that lets your LLMs (like Claude) talk directly to your BigQuery data! Think of it as a friendly translator that sits between your AI assistant and your database, making sure they can chat securely and efficiently.
    Last updated -
    1
    157
    113
    JavaScript
    MIT License
  • A
    security
    F
    license
    A
    quality
    The server facilitates natural language interactions for exploring and understanding codebases, providing insights into data models and system architecture using a cost-effective, simple setup with support for existing Claude Pro subscriptions.
    Last updated -
    4
    18
    Python
    • Apple
  • A
    security
    A
    license
    A
    quality
    A server that enables LLMs like Claude to interact with Azure Cosmos DB databases through natural language queries, acting as a translator between AI assistants and database systems.
    Last updated -
    4
    2
    JavaScript
    MIT License
  • A
    security
    A
    license
    A
    quality
    A server that enables LLMs like Claude to query AWS DynamoDB databases through natural language requests, supporting table management, data querying, and schema analysis.
    Last updated -
    7
    610
    JavaScript
    MIT License
    • Apple

View all related MCP servers

MCP directory API

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