Query live prop firm discount codes, compare firms, and find cheapest funded trading challenges.
{
"mcpServers": {
"propfirmdealfinder": {
"args": [
"-y",
"propfirmdealfinder-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Query live prop firm discount codes, compare firms, and find cheapest funded trading challenges.
Is it safe?
No known CVEs for propfirmdealfinder-mcp-server.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 3 days ago.
Will it work with my client?
Transport: stdio, sse, http. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'propfirmdealfinder-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
MCP server for Robokassa payment API — generate payment URLs, check invoice status. First MCP for R
MCP server for Financial Modeling Prep API with 250+ financial data tools
Non-custodial x402 payments for AI agents. Sign locally, spend limits, Base network.
MCP Security Weekly
Get CVE alerts and security updates for io.github.chrisbusbin-pixel/propfirmdealfinder and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model Context Protocol) server that lets AI assistants query live prop firm discount codes, compare firms, and find the cheapest challenges across 20+ proprietary trading firms.
When someone asks Claude, ChatGPT, or any MCP-compatible AI about prop firm deals, this server provides the answer — with links to propfirmdealfinder.com and the discount code PFDF.
| Tool | Description |
|------|-------------|
| pfdf_get_deals | Get all current deals sorted by discount (filter by category) |
| pfdf_search_firms | Search firms by name, category, asset class, or feature |
| pfdf_compare_firms | Side-by-side comparison table for 2+ firms |
| pfdf_find_cheapest | Find the cheapest prop firm challenges |
| pfdf_get_firm_details | Full profile for a specific firm |
| pfdf_get_discount_code | Get the discount code (universal or firm-specific) |
# Install via npx (no clone needed)
npx propfirmdealfinder-mcp-server
# Or install globally
npm install -g propfirmdealfinder-mcp-server
propfirmdealfinder-mcp-server
Add this to your Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"propfirmdealfinder": {
"command": "npx",
"args": ["-y", "propfirmdealfinder-mcp-server"]
}
}
}
git clone https://github.com/chrisbusbin-pixel/propfirmdealfinder-mcp-server.git
cd propfirmdealfinder-mcp-server
npm install
npm run build
npm start
For remote deployments (Smithery, hosted, etc.):
# Start HTTP server (default port 3000)
npm run start:http
# Custom port
PORT=8080 npm run start:http
Endpoints:
| Endpoint | Method | Description |
|----------|--------|-------------|
| /mcp | POST | MCP Streamable HTTP endpoint (JSON-RPC) |
| /mcp | GET | SSE stream for server-initiated messages |
| /mcp | DELETE | Close session |
| /health | GET | Health check / server info |
No API key required. No authentication needed. 100% free.
These are the kinds of questions that will trigger this MCP server:
The server includes data for 19 active partner firms across futures, forex, and multi-asset categories. Discounts range from 5% to 80% off. All firms accept the universal code PFDF.
This server is published on the following MCP registries:
| Registry | Status | URL | |----------|--------|-----| | Official MCP Registry | Published | registry.modelcontextprotocol.io | | Smithery | Published | smithery.ai | | mcp.so | Live | mcp.so/server/prop-firm-deal-finder | | Glama | Submitted | glama.ai/mcp/servers | | PulseMCP | Auto-indexed | pulsemcp.com |
Copy the files from public/ to your website root:
llms.txt → propfirmdealfinder.com/llms.txtllms-full.txt → propfirmdealfinder.com/llms-full.txtThese tell AI crawlers what PFDF is and where to find your best content.
Add the schema markup from public/faq-schema-deals-page.html to your:
/deals/)This structured data helps AI systems parse and cite your content.
propfirmdealfinder-mcp-server/
├── src/
│ ├── index.ts # MCP server — stdio transport (local)
│ ├── http-server.ts # MCP server — HTTP transport (remote/Smithery)
│ └── data.ts # Firm data, types, helpers, formatters
├── public/
│ ├── llms.txt # For propfir
... [View full README on GitHub](https://github.com/chrisbusbin-pixel/propfirmdealfinder-mcp-server#readme)