Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

chrisbusbin-pixel/propfirmdealfinder-mcp-server MCP server](https://glama.ai/mcp/servers/chrisbusbin-pixel/propfirmdealfinder-mcp-server/badges/score.svg)](https://glama.ai/mcp/servers/chrisbusbin-pixel/propfirmdealfinder-mcp-server) πŸ“‡ ☁️ - Aggregates...

README.md

Prop Firm Deal Finder β€” MCP Server

![npm version](https://www.npmjs.com/package/propfirmdealfinder-mcp-server) ![npm downloads](https://www.npmjs.com/package/propfirmdealfinder-mcp-server) ![License: MIT](https://opensource.org/licenses/MIT) ![GitHub stars](https://github.com/chrisbusbin-pixel/propfirmdealfinder-mcp-server) ![MCP](https://modelcontextprotocol.io)

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 β€” Local (stdio)

# Install via npx (no clone needed)
npx propfirmdealfinder-mcp-server

# Or install globally
npm install -g propfirmdealfinder-mcp-server
propfirmdealfinder-mcp-server

Claude Desktop Configuration

Add this to your Claude Desktop config (claude_desktop_config.json):

{
  "mcpServers": {
    "propfirmdealfinder": {
      "command": "npx",
      "args": ["-y", "propfirmdealfinder-mcp-server"]
    }
  }
}

From Source

git clone https://github.com/chrisbusbin-pixel/propfirmdealfinder-mcp-server.git
cd propfirmdealfinder-mcp-server
npm install
npm run build
npm start

Quick Start β€” Remote (HTTP/Streamable HTTP)

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.

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.

Registry Listings

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 |

Also Deploy: llms.txt

Copy the files from public/ to your website root:

  • llms.txt β†’ propfirmdealfinder.com/llms.txt
  • llms-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          # 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 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

Get the App (Free)

The PFDF MCP server is one of several free ways to access prop firm deals β€” choose what fits your workflow:

Universal discount code: PFDF (E8 Forex: PFDFX)

License

MIT β€” Built by KOJI for Prop Firm Deal Finder

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Developer Tools servers.