Gathering detailed insights and metrics for @mseep/playfab-mcp-server
Gathering detailed insights and metrics for @mseep/playfab-mcp-server
Gathering detailed insights and metrics for @mseep/playfab-mcp-server
Gathering detailed insights and metrics for @mseep/playfab-mcp-server
npm install @mseep/playfab-mcp-server
Typescript
Module System
Node Version
NPM Version
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
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.
1You: "Show me the latest 10 items." 2Claude: *calls the PlayFab search_items API and returns the results in plain text*
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:
To install PlayFab MCP Server for Claude Desktop automatically via Smithery:
1npx -y @smithery/cli install @akiojin/playfab-mcp-server --client claude
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):
1PLAYFAB_TITLE_ID= 2PLAYFAB_DEV_SECRET_KEY=
Install Dependencies
In the project root, run the following command to install all necessary dependencies:
1npm install
Build the Project
Compile the project by executing:
1npm run build
Start the Server
Navigate to the dist
folder and start the server with:
1npm start
Confirmation Message
Upon startup, you should see this message:
1PlayFab Server running on stdio
To use the PlayFab MCP server with Cursor, follow these steps:
mcp.json
file from this repository into your folder and update the values according to your environment.Open Claude Desktop and navigate to File → Settings → Developer → Edit Config. Then, replace the claude_desktop_config
file content with the following snippet:
1{ 2 "mcpServers": { 3 "playfab": { 4 "command": "node", 5 "args": [ "C:/Path/To/playfab-mcp/dist/index.js" ], // Specify the path to your PlayFab MCP server file 6 "env": { 7 "PLAYFAB_TITLE_ID": "Your PlayFab Title ID", 8 "PLAYFAB_DEV_SECRET_KEY": "Your PlayFab Developer Secret Key" 9 } 10 } 11 } 12}
With these steps, you have successfully configured the PlayFab MCP server for use with your LLM client, allowing seamless interaction with PlayFab's services.
No vulnerabilities found.
No security vulnerabilities found.