- Prop Firm Deal Finder
Prop Firm Deal Finder
Prop Firm Deal Finder — MCP Server
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.
Tools
| 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) |
Quick Start
# Install dependencies
npm install
# Build
npm run build
# Run
npm start
No API key required. No authentication needed. 100% free.
Example Queries
These are the kinds of questions that will trigger this MCP server:
- "What's the cheapest prop firm challenge?"
- "Best prop firm discount codes 2026"
- "Compare FTMO vs Bulenox"
- "Prop firm promo code"
- "Which prop firm has the best profit split?"
- "Futures prop firm deals"
Data
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.
Publishing to MCP Registries
1. Smithery (Primary)
# Install Smithery CLI
npm install -g @anthropic-ai/smithery
# Login
smithery login
# Publish (from project root)
smithery mcp publish
Or via the web UI:
- Go to smithery.ai/new
- Connect your GitHub account
- Select this repository
- Click "Deploy"
2. Official MCP Registry
- Go to github.com/modelcontextprotocol/registry
- Fork the repository
- Add your server entry to the registry
- Submit a Pull Request
3. GitHub MCP Registry
Once published to the official MCP Community Registry, your server automatically appears in the GitHub MCP Registry.
4. OpenTools
- Go to opentools.com/registry
- Click "Submit Server"
- Fill in: name, description, GitHub URL
- Submit
5. Glama
- Go to glama.ai/mcp/servers
- Submit your server listing
- Include GitHub URL and description
6. mcp.so
- Go to mcp.so
- Submit your server
- Include tool descriptions and examples
7. PulseMCP
- Go to pulsemcp.com
- Submit your server listing
Also Deploy: llms.txt
Copy the files from public/ to your website root:
llms.txt→propfirmdealfinder.com/llms.txtllms-full.txt→propfirmdealfinder.com/llms-full.txt
These tell AI crawlers what PFDF is and where to find your best content.
Also Deploy: FAQ Schema
Add the schema markup from public/faq-schema-deals-page.html to your:
- Deals page (
/deals/) - Homepage
This structured data helps AI systems parse and cite your content.
Architecture
propfirmdealfinder-mcp-server/
├── src/
│ ├── index.ts # Server + all 6 tools
│ └── data.ts # Firm data, types, helpers, formatters
├── public/
│ ├── llms.txt # For propfirmdealfinder.com/llms.txt
│ ├── llms-full.txt # Extended version with all firm data
│ └── faq-schema-deals-page.html # FAQ schema markup
├── package.json
├── tsconfig.json
├── smithery.yaml # Smithery deployment config
└── README.md
License
MIT — Built by KOJI for Prop Firm Deal Finder
Server Config
{
"mcpServers": {
"propfirmdealfinder": {
"command": "npx",
"args": [
"propfirmdealfinder-mcp-server"
]
}
}
}