PropProfessor MCP
Standalone MCP server for PropProfessor, plus a small query CLI for local analysis.
Quick start
- Auth guide
- Config guide
git clone https://github.com/j17drake/propprofessor-mcp.git
cd propprofessor-mcp
npm install
You also need a saved PropProfessor browser session at auth.json in the repo root.That file is ignored by git, so copy it from your existing setup or save a fresh browser session into this repo.
Run locally
Run the MCP server over stdio:
npm run mcp
# or, after npm link
pp-mcp
Run the query CLI:
npm run query -- screen --league NBA --market Moneyline
# or
pp-query tennis --market Moneyline --limit 10
# or
pp-query screen --league NBA --market Points
# or
pp-query sport --league WNBA --market Moneyline
# or
pp-query wnba --market Moneyline
You can also use these aliases directly:
- NBA,
query_nba_screenorpp-query nba - WNBA,
query_wnba_screenorpp-query wnba - MLB,
query_mlb_screenorpp-query mlb - NFL,
query_nfl_screenorpp-query nfl - NHL,
query_nhl_screenorpp-query nhl - Soccer,
query_soccer_screenorpp-query soccer - NCAAB,
query_ncaab_screenorpp-query ncaab - NCAAF,
query_ncaaf_screenorpp-query ncaaf
npm link workflow
If you want the binaries available on your PATH while developing:
npm link
pp-mcp
pp-query health
pp-query command inventory
opinion, analyze a single prop from the sportsbook screensportsbook, fetch sportsbook +EV rowssmart, fetch smart money rowsfantasy, fetch fantasy rowstennis, query and rank tennis screen rowsscreen, query any sport screen with--leaguesport, alias forscreen, use--leagueto pick the sportnba, NBA screen shorthandwnba, WNBA screen shorthandmlb, MLB screen shorthandnfl, NFL screen shorthandnhl, NHL screen shorthandsoccer, Soccer screen shorthandncaab, NCAAB screen shorthandncaaf, NCAAF screen shorthandpresets, show the active league presetslist, show the command inventoryhealth, check auth and endpoint health
MCP config example
Add this to your Hermes or Claude MCP config when you want to use the local repo:
{
"mcpServers": {
"propprofessor": {
"command": "pp-mcp",
"args": [],
"env": {
"NODE_ENV": "production"
}
}
}
}
If you prefer a direct repo path instead of a global link, use the local file path to scripts/propprofessor-mcp-server.js as the command target in your MCP launcher.
Available tools
query_screen_oddsquery_fantasyquery_fantasy_sortedquery_screen_odds_best_compsquery_screen_odds_rankedquery_sport_screenquery_nba_screenquery_wnba_screenquery_mlb_screenquery_nfl_screenquery_nhl_screenquery_soccer_screenquery_ncaab_screenquery_ncaaf_screenquery_tennis_screenhide_fantasy_rowhide_ev_rowget_hidden_betsunhide_betclear_hidden_betsleague_presetshealth_status
Requirements
- Node.js 18 or newer
- A saved PropProfessor browser session at
auth.jsonin the repo root
Packaging
This repo is set up for npm packaging and tagged GitHub releases.
mainpoints at the MCP server entrypointpp-mcpandpp-queryare exposed as binariesnpm testruns the node:test suite
Repository layout
lib/, PropProfessor auth, requests, and analysis helpersscripts/, MCP stdio server and CLItest/, node:test coverage for the API, MCP contract, and CLI