Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"nakama": {
"env": {
"NAKAMA_HOST": "127.0.0.1",
"NAKAMA_SERVER_KEY": "defaultkey",
"NAKAMA_CONSOLE_PASSWORD": "your-console-password"
},
"command": "/path/to/nakama-mcp"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
This is a personal research project. Do not use it on any live server or production environment. > This tool was built for local experimentation and learning purposes only. It has not been audited for production use and comes with no guarantees around stability, security, or data safety. > If you need an official, supported integration between Nakama and AI tooling, wait for an official release from Heroic Labs.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools / entertainment
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
MCP server for using the GitLab API
MCP Security Weekly
Get CVE alerts and security updates for Nakama Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
[!WARNING] This is a personal research project. Do not use it on any live server or production environment.
This tool was built for local experimentation and learning purposes only. It has not been audited for production use and comes with no guarantees around stability, security, or data safety.
If you need an official, supported integration between Nakama and AI tooling, wait for an official release from Heroic Labs.
Hey, I'm DannyIsYog — a software engineer at Heroic Labs. This is a side project I built to explore how AI fits into my development workflow and to get hands-on experience creating an MCP server. If you work with Nakama and Claude, I hope it saves you some time.
Connect Claude to your Nakama game server via the Model Context Protocol.
Query player accounts, inspect live matches, browse leaderboards, read storage objects, and analyze your game backend — all through natural language in Claude Desktop or any MCP client.
ENABLE_WRITE_TOOLS=true)# From source
go install github.com/DannyIsYog/nakama-mcp-server/cmd/nakama-mcp@latest
# Or download a binary from Releases and move it to your PATH
Edit ~/.config/claude/claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"nakama": {
"command": "/path/to/nakama-mcp",
"env": {
"NAKAMA_HOST": "127.0.0.1",
"NAKAMA_SERVER_KEY": "defaultkey",
"NAKAMA_CONSOLE_PASSWORD": "your-console-password"
}
}
}
}
Restart Claude Desktop. You should see the nakama-mcp tools available in a new conversation.
| Env Var | Default | Description |
|---|---|---|
NAKAMA_HOST | 127.0.0.1 | Nakama server host |
NAKAMA_PORT | 7350 | Client API port |
NAKAMA_SERVER_KEY | defaultkey | Server key for device auth |
NAKAMA_SSL | false | Use HTTPS/TLS |
NAKAMA_CONSOLE_PORT | 7351 | Console API port |
NAKAMA_CONSOLE_USER | admin | Console username |
NAKAMA_CONSOLE_PASSWORD | password | Console password |
ENABLE_CONSOLE_TOOLS | true | Register console-API tools |
ENABLE_WRITE_TOOLS | false | Register write/delete tools |
REQUEST_TIMEOUT_SECONDS | 10 | HTTP request timeout |
You can connect Claude to multiple Nakama servers simultaneously by adding multiple entries to claude_desktop_config.json. Each entry runs a separate nakama-mcp process pointing at a different server.
{
"mcpServers": {
"nakama-dev": {
"command": "/path/to/nakama-mcp",
"env": {
"NAKAMA_HOST": "127.0.0.1",
"NAKAMA_SERVER_KEY": "defaultkey",
"NAKAMA_CONSOLE_PASSWORD": "password"
}
},
"nakama-prod": {
"command": "/path/to/nakama-mcp",
"env": {
"NAKAMA_HOST": "prod.example.com",
"NAKAMA_PORT": "7350",
"NAKAMA_CONSOLE_PORT": "7351",
"NAKAMA_SERVER_KEY": "your-prod-server-key",
"NAKAMA_CONSOLE_PASSWORD": "your-prod-console-password",
... [View full README on GitHub](https://github.com/DannyIsYog/nakama-mcp-server#readme)