Provides poker coaching with Monte Carlo equity calculations, player tracking, and exploit-based recommendations.
Configuration
View docs{
"mcpServers": {
"alanyangrice-mcp-poker": {
"command": "node",
"args": [
"/path/to/mcp-poker/dist/index.js"
]
}
}
}You are configuring an MCP server specialized for poker play recommendations. This server computes real equity, tracks players, and provides exploit-based coaching to adapt to multi-way dynamics and observed tendencies. It integrates a Monte Carlo equity engine, a player-tracking database, and an exploit-driven guidance system to help you make informed coaching decisions during play.
Start and connect to the MCP Poker server from your MCP client. The server analyzes hands from PokerNow histories, computes equity-based guidance, and adjusts recommendations based on observed player tendencies. When you run a coaching session, you receive real-time advice that accounts for the number of players in the hand and exploitable leaks.
Prerequisites and setup are straightforward. Ensure you have the required runtimes installed, build the server, and install the Python dependency for equity calculations.
npm install
npm run build
python3 -m venv .venv
.venv/bin/pip install phevaluatorThe server is designed to be started by your MCP client, but you can also integrate it using a local command configuration. A ready-to-use configuration example is provided for a local MCP setup.
{
"mcpServers": {
"poker": {
"command": "node",
"args": ["/path/to/mcp-poker/dist/index.js"]
}
}
}Import a PokerNow CSV hand history file into the local SQLite store.
Designate which player represents you in analyses and coaching sessions.
Link two PokerNow IDs to the same player profile for unified tracking.
Attach a note to a tracked player for quick reference.
Retrieve a full stat sheet with metrics like VPIP, PFR, 3-bet, c-bet, aggression, WTSD, and more.
Run natural language leakage analysis and receive exploit-oriented recommendations.
Obtain a behavioral dossier covering positions, multi-way tendencies, and showdowns.
List all players currently tracked in the local database.
Get real-time coaching with MC equity estimates and exploit adjustments.
Query hand histories using various filters to locate specific situations.
Deep-dive replay and analysis of a single hand.
View session results and identify the biggest pots and pivotal hands.
List all imported sessions for review or export.
Provide full tool documentation for the LLM to reference when guiding users.