PropRaven MCP Server
Model Context Protocol server for Claude, ChatGPT, Cursor, and any MCP-compatible agent. 31 tools cover the underwriting and due-diligence workflow.
Hosted (recommended)
No install — point your MCP client at the hosted endpoint https://propraven.com/mcp and connect with OAuth or your API key.
PropRaven uses API-key bearer auth: pass Authorization: Bearer pz_…. This works today in Claude Desktop, Claude Code, Cursor, and Smithery (header config). The Claude.ai web connector UI has no header field and uses OAuth — see the OAuth section below. Get a free key →
Codex — OAuth
Add https://propraven.com/mcp as an HTTP MCP server in Codex and connect your PropRaven account. Codex registers its own OAuth client automatically; leave any client ID or client secret override empty. Sign in and approve access in the browser.
From the Codex CLI:
codex mcp add propraven --url https://propraven.com/mcp
codex mcp login propravenClaude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\\Claude\\claude_desktop_config.json (Windows):
{
"mcpServers": {
"propraven": {
"url": "https://propraven.com/mcp",
"headers": {
"Authorization": "Bearer pz_your_real_key_here"
}
}
}
}Claude Code
claude mcp add --transport http propraven https://propraven.com/mcp \
--header "Authorization: Bearer pz_your_real_key_here"Cursor
Same config at ~/.cursor/mcp.json.
Claude.ai (web) — OAuth
The claude.ai web connector UI has no header field, so it uses OAuth (authorization-code + PKCE). Add the connector with the hosted URL and PropRaven's OAuth client id when prompted; you'll approve a one-time consent screen. The token maps to a read-only key on your account's plan. Bearer-header clients (Desktop/Code/Cursor) don't need this.
ChatGPT Custom GPT
Add an Action with OpenAPI URL api.propraven.com/openapi.json and authentication = API Key (Bearer). Native MCP support in ChatGPT requires OAuth — coming with v0.2.
Local (stdio)
Use the npm package for offline / latency-sensitive workflows. Talks to the PropRaven REST API directly.
npm install -g @propraven/mcp{
"mcpServers": {
"propraven": {
"command": "propraven-mcp",
"env": {
"PROPRAVEN_API_KEY": "pz_your_real_key_here"
}
}
}
}Tools
parcel_lookupparcel_searchparcel_compareowner_piercehazard_scorevaluation_estimatepermits_historysales_historyget_freshnessget_catalogcheck_availabilitybuy_dossierfind_leadsbuy_owner_reportbuy_comp_packbuy_risk_scoredeals_absenteedeals_flipsdeals_contractorsdeals_lendersdeals_entitiesdeals_long_holddeals_high_land_ratiodeals_portfolio_ownersmarket_coverageoccupant_lookupparcel_lookup_batchparcel_reportmarket_snapshotcompscmbs_exposureEach tool description is tuned for agent reasoning — explicit “use when / do NOT use when” framing.
Verification
curl -X POST https://propraven.com/mcp \
-H "Authorization: Bearer pz_your_real_key" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | jq '.result.tools | length'
# expect: 31Resources
- · Connect your agent — the discover → preview → pay flow, the x402 dossier walkthrough, and pricing
- · Source on GitHub
- · Model Context Protocol spec
- · Python SDK
- · TypeScript SDK