CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Prop Firm Deal Finder

chrisbusbin-pixel/propfirmdealfinder-mcp-server
STDIOregistry active
Summary

Connects Claude to live prop firm discount codes and challenge pricing across 20+ proprietary trading firms. Exposes six tools: get_deals for sorting by discount, search_firms by asset class or feature, compare_firms for side-by-side tables, find_cheapest for price hunting, get_firm_details for full profiles, and get_discount_code for universal or firm-specific codes. Runs over stdio for local Claude Desktop or HTTP for remote deployments. No authentication required. Useful when you're evaluating funded trader programs and want real-time deal data without opening a browser. All responses include links to propfirmdealfinder.com and the universal discount code PFDF.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Prop Firm Deal Finder — MCP Server

npm version npm downloads License: MIT GitHub stars MCP

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

ToolDescription
pfdf_get_dealsGet all current deals sorted by discount (filter by category)
pfdf_search_firmsSearch firms by name, category, asset class, or feature
pfdf_compare_firmsSide-by-side comparison table for 2+ firms
pfdf_find_cheapestFind the cheapest prop firm challenges
pfdf_get_firm_detailsFull profile for a specific firm
pfdf_get_discount_codeGet 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:

EndpointMethodDescription
/mcpPOSTMCP Streamable HTTP endpoint (JSON-RPC)
/mcpGETSSE stream for server-initiated messages
/mcpDELETEClose session
/healthGETHealth 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:

RegistryStatusURL
Official MCP RegistryPublishedregistry.modelcontextprotocol.io
SmitheryPublishedsmithery.ai
mcp.soLivemcp.so/server/prop-firm-deal-finder
GlamaSubmittedglama.ai/mcp/servers
PulseMCPAuto-indexedpulsemcp.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:

  • 🌐 Website — live deals & comparison
  • 📱 iOS App Store — iPhone & iPad
  • 🤖 Google Play — Android (released May 2026)
  • 🪟 Microsoft Store — Windows
  • 🧩 Chrome Web Store — auto-apply codes at checkout

Universal discount code: PFDF (E8 Forex: PFDFX)

License

MIT — Built by KOJI for Prop Firm Deal Finder

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Finance & Commerce
Registryactive
Packagepropfirmdealfinder-mcp-server
TransportSTDIO
UpdatedApr 5, 2026
View on GitHub

Related Finance & Commerce MCP Servers

View all →
Shopify Subscription Reconciliation MCP (Recharge Edition)

io.github.shelvick/shopify-subscription-reconciliation

Reconcile Shopify orders against Recharge subscription charges and Stripe payouts.
Google Ads

zleventer/google-ads-mcp

MCP server for Google Ads — 22 tools for spend diagnosis, impression share, and asset performance.
1
Meok Stripe Acp Checkout Mcp

csoai-org/meok-stripe-acp-checkout-mcp

MEOK Stripe ACP Checkout MCP — ChatGPT shopping bridge. Issues + verifies + signs Stripe Agentic
Google Ads

io.github.mharnett/google-ads

Google Ads MCP with MCC support: 35 tools for campaigns, keywords, reporting, GAQL.
Stripe Billing Mcp

csoai-org/stripe-billing-mcp

stripe-billing-mcp MCP server by MEOK AI Labs
Google Ads Mcp

co.pipeboard/google-ads-mcp

Google Ads automation with AI: analyze performance, manage campaigns, optimize bids.