Bb Gnubg
FreeNot checkedMCP server wrapping the GNU Backgammon neural network evaluation engine. Provides 18 tools for position analysis, move evaluation, rollouts, and board conversio
About
MCP server wrapping the GNU Backgammon neural network evaluation engine. Provides 18 tools for position analysis, move evaluation, rollouts, and board conversion.
README
MCP server wrapping the GNU Backgammon neural network evaluation engine. Exposes 18 tools for position analysis, move evaluation, rollouts, and board conversion via the Model Context Protocol.
Requirements
- Python 3.13+
- uv
Installation
git clone <repo-url>
cd bb-gnubg-mcp
uv sync
Running Locally (stdio)
The default transport is stdio, suitable for use with Claude Code and other MCP clients:
uv run python -m bb_gnubg_mcp
Or via the installed script:
uv run bb-gnubg-mcp
Claude Code Configuration
Add to your Claude Code MCP settings:
{
"mcpServers": {
"bb-gnubg-mcp": {
"command": "uv",
"args": ["run", "--directory", "/path/to/bb-gnubg-mcp", "python", "-m", "bb_gnubg_mcp"]
}
}
}
Running Locally (HTTP)
For HTTP transport with API key authentication:
export MCP_TRANSPORT=http
export API_KEY=your-secret-key
export PORT=8000 # optional, defaults to 8000
uv run python -m bb_gnubg_mcp
The server starts on http://0.0.0.0:8000 with:
- Streamable HTTP MCP transport
- Bearer token auth on all tool calls (pass
Authorization: Bearer <API_KEY>) - Health check at
GET /health
Docker
Build
docker build -t bb-gnubg-mcp .
Run
docker run -p 10000:10000 \
-e API_KEY=your-secret-key \
bb-gnubg-mcp
The Dockerfile uses a multi-stage build with uv. The image defaults to HTTP transport on port 10000.
Override settings
docker run -p 8080:8080 \
-e API_KEY=your-secret-key \
-e PORT=8080 \
-e MAX_ROLLOUT_GAMES=5000 \
bb-gnubg-mcp
Deploy to Render
Push this repo to GitHub.
In the Render dashboard, click New > Blueprint and connect your GitHub repo.
Render detects
render.yamland creates the service automatically.Set the
API_KEYenvironment variable in the Render dashboard (it's markedsync: falsein the Blueprint so it won't be committed to source).Deploy. The health check at
/healthconfirms the service is running.
Alternatively, create the service manually:
- New > Web Service in Render.
- Connect your GitHub repo.
- Set Environment to Docker.
- Add environment variables:
MCP_TRANSPORT=httpPORT=10000API_KEY= your secret key
- Set Health Check Path to
/health. - Deploy.
Auto-deploy is enabled — pushing to the connected branch triggers a new deployment.
Tools
Board Conversion
| Tool | Description |
|---|---|
board_from_position_id |
Position ID string to 2x25 board |
board_from_position_key |
Position key string to 2x25 board |
position_id |
Board (any format) to Position ID |
key_of_board |
Board (any format) to position key |
Position Analysis
| Tool | Description |
|---|---|
classify |
Classify position type (contact, race, bearoff, etc.) |
probabilities |
Win/gammon/backgammon probabilities via neural net |
pub_eval_score |
Fast heuristic evaluation score |
Move Evaluation
| Tool | Description |
|---|---|
best_move |
Best move with alternatives, probabilities, and equity |
pub_best_move |
Best move via fast public evaluation |
moves |
All legal moves for a position and dice roll |
Simulation
| Tool | Description |
|---|---|
rollout |
Cubeless Monte Carlo rollout |
cubeful_rollout |
Cubeful Monte Carlo rollout |
Bearoff
| Tool | Description |
|---|---|
bearoff_id_2_pos |
Bearoff ID to 6-point position |
bearoff_probabilities |
Probability distribution for bearing off in N moves |
one_checker_race |
Win probability for single-checker bearoff |
Utility
| Tool | Description |
|---|---|
roll |
Roll two dice |
equities_value |
Match equity table lookup |
get_constants |
List all GNUBG constant names and values |
Board Input Formats
All tools that accept a board position support three formats:
JSON boardState (matching the bb-plays-mcp convention):
{
"board": {
"x": {"24": 2, "13": 5, "8": 3, "6": 5},
"o": {"24": 2, "13": 5, "8": 3, "6": 5}
},
"player": "x"
}
Position ID (14-character GNUBG string):
"4HPwATDgc/ABMA"
Raw 2x25 array (as returned by gnubg):
[[0,0,0,0,0,5,0,3,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,2,0],
[0,0,0,0,0,5,0,3,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,2,0]]
Environment Variables
| Variable | Default | Description |
|---|---|---|
MCP_TRANSPORT |
stdio |
Transport mode: stdio or http |
API_KEY |
— | Required for HTTP mode. Bearer token for auth. |
PORT |
8000 |
HTTP listen port |
MAX_ROLLOUT_GAMES |
10000 |
Maximum games per rollout call |
Tests
uv run pytest # all tests (rollouts are slow)
uv run pytest -m "not slow" # skip rollout tests
Installing Bb Gnubg
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/hbomze/bb-gnubg-api-mcpFAQ
Is Bb Gnubg MCP free?
Yes, Bb Gnubg MCP is free — one-click install via Unyly at no cost.
Does Bb Gnubg need an API key?
No, Bb Gnubg runs without API keys or environment variables.
Is Bb Gnubg hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Bb Gnubg in Claude Desktop, Claude Code or Cursor?
Open Bb Gnubg on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectCompare Bb Gnubg with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
