Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. Developer Tools
  3. DraftCall
D
Health: Not checked yetWe have not completed a health check for this listing yet.No health check has run yet.

DraftCall

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

Should I start X or Y? Head-to-head NFL fantasy comparisons, rankings, scarcity, bye conflicts.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Client Config & Setup

Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "draftcall": {
      "command": "npx",
      "args": [
        "-y",
        "draftcall"
      ]
    }
  }
}

πŸ’‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

DraftCall MCP Server

License: MIT MCP Registry

NFL fantasy football data for the 2026 season, over the Model Context Protocol.

Endpoint: https://draftcall.io/mcp Transport: streamable HTTP, stateless Auth: none. Free, read-only, no API key, no account. Docs: https://draftcall.io/mcp-server/

Ask an MCP-connected assistant "should I start Bijan Robinson or Jahmyr Gibbs in PPR" and it can answer from live data instead of guessing. Every tool result carries the draftcall.io URL the numbers came from, so answers stay citable.

Connect

Any client that accepts a remote MCP endpoint. No install, no clone.

Claude Code

Terminal
claude mcp add --transport http draftcall https://draftcall.io/mcp

Claude Desktop, or any client that takes a JSON config

config.json
{
  "mcpServers": {
    "draftcall": {
      "type": "streamable-http",
      "url": "https://draftcall.io/mcp"
    }
  }
}

Clients that only speak stdio

Some clients and registries cannot take a remote URL and require a command they can run locally. For those, this repository ships a stdio bridge: it forwards newline-delimited JSON-RPC to the same hosted endpoint, so the tools, prompts and resources are identical and there is still only one server implementation.

Terminal
docker build -t draftcall-mcp .
docker run --rm -i draftcall-mcp

Or without Docker, using any Node 18 or newer:

bash
node stdio-proxy.mjs

The bridge has no dependencies and holds no state. Set DRAFTCALL_MCP_URL to point it somewhere other than production. Prefer the remote URL above wherever your client supports it; the bridge is a compatibility shim, not the main path.

Tools

Ten, all read-only. Nothing here can modify a league, a roster, or an account.

ToolArgumentsWhat it answers
compare_playersplayer_a, player_b, scoring_formatHead to head: points per game in the requested format, volume stats, bye weeks, who produced more. Start/sit, draft and trade questions about two named players.
get_rankingsposition, scoring_format, limitPosition rankings for QB, RB, WR, TE, FLEX, K or DEF.
get_playernameOne player's profile: production, tier, efficiency, bye week.
search_playersquery, limitFind players by partial name, team, or position.
get_positional_scarcityscoring_formatHow steep the scoring dropoff is at each position, for draft strategy.
get_bye_conflictsplayersWhich bye weeks two or more rostered players share.
get_weekly_matchupplayer, week, scoring_formatWho a player faces in a given week of the season, home or away, and how generous that opponent has been to the position. In-season start/sit questions that name a week.
get_strength_of_scheduleteam + position, or player, or position aloneHow easy or hard a schedule is for one position, over the full season and over fantasy playoff weeks 14 through 17. A position on its own ranks all 32 teams, easiest first.
get_adp_market_gapsposition, direction, scoring_format, limitPlayers whose consensus average draft position disagrees most with their actual production ranking. Taken earlier than production means the room is drafting on expectation; later means it is drafting on doubt. A disagreement, not a recommendation.
verify_claimplayer, metric, value, scoring_formatCheck a stated figure (points per game, games played, bye week, rank, or any season stat) against the data. Confirms it, or returns the real number. Call it before quoting a stat from memory.

Prompts and resources

Three prompts, for clients that surface them in a picker or slash menu: start_sit, draft_pick, and bye_planning. Each one names the exact tools to call and the order to call them.

One resource, draftcall://methodology, a single markdown page describing how every derived figure is computed: season basis, scoring formats, tiers, scarcity, opponent difficulty, and strength of schedule.

scoring_format accepts PPR, half-PPR and standard. position accepts QB, RB, WR, TE, FLEX, K and DEF. week accepts 1 through 18.

Data

Player names and statistics are public-domain factual data. Rankings refresh daily. Every figure is labelled inline with the season it describes (2025 regular-season production until the 2026 season accrues a usable sample), and every response carries a stats_season field, so a model cannot mistake a completed season for a projection. DraftCall publishes no projections, ADP, or injury status through this server.

Not affiliated with the NFL or the NFLPA.

About

Built by Pizza Robot Studios LLC, an independent game and app studio in Los Angeles. DraftCall is also an iOS and Android app: https://draftcall.io/download/

This repository registers the hosted server, documents its tools, and carries the stdio bridge for clients that need one. The server itself runs at the endpoint above.

License

The contents of this repository (the registry manifest and these docs) are MIT licensed. See LICENSE and NOTICE.

That covers this repo only. The DraftCall service, the data it returns, and the DraftCall name are not covered: use of the endpoint is governed by https://draftcall.io/terms/, and DraftCall is a trademark of Pizza Robot Studios LLC (USPTO Serial 99762133).

Related MCP Servers

View all in Developer Tools View all alternatives
  • PraisonAI logoPraisonAI

    AI Agents Framework with Self Reflection and MCP support

    πŸ’» Developer Tools1 views
    Compare vs PraisonAI β†’
  • Labelhead Artist Momentum logoLabelhead Artist Momentum

    Trending hip-hop artist momentum scores across four cultural dimensions.

    πŸ’» Developer Tools0 views
    Compare vs Labelhead Artist Momentum β†’
  • Claude Task Master logoClaude Task Master

    AI-powered task management system for AI-driven development. Features PRD parsing, task expansion, multi-provider support (Claude, OpenAI, Gemini, Perplexity, xAI), and selective tool loading for optimized context usage.

    πŸ’» Developer Tools8 views
    Compare vs Claude Task Master β†’
  • Flutter Skill logoFlutter Skill

    AI E2E testing bridge β€” give AI eyes and hands inside any app. 8 platforms, 40+ tools.

    πŸ’» Developer Tools1 views
    Compare vs Flutter Skill β†’

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about DraftCall

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "draftcall": { "command": "npx", "args": ["-y", "DraftCall"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewDraftCall AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/draftcall?style=directory)](https://allmcps.com/mcp/draftcall)
HTML Embed
<a href="https://allmcps.com/mcp/draftcall"><img src="https://allmcps.com/api/badge/draftcall?style=directory" alt="DraftCall on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to DraftCall β†’Install in Claude DesktopInstall in CursorInstall in VS Code