Skip to main content
Glama
einreke

NFL Transactions MCP

by einreke

NFL 거래 MCP

ProSportsTransactions.com에서 NFL 거래 데이터를 스크래핑하기 위한 모듈식 명령줄 프로그램(MCP)입니다.

특징

  • 유연한 필터링 옵션으로 NFL 거래 내역을 가져옵니다.

    • 선수/코치/임원의 이동(트레이드, FA 영입, 드래프트 픽 등)

    • 부상자 명단으로의 이동/부상자 명단에서의 이동

    • 마이너 리그(NFL 유럽)로의 이동 및 마이너 리그에서의 이동

    • 부상으로 인해 경기에 출전하지 못함

    • 개인적인 사유로 경기에 나가지 못함

    • 징계 조치(정지, 벌금 등)

    • 법률/형사 사건

  • 팀, 선수, 날짜 범위 및 거래 유형별로 필터링

  • CSV, JSON 또는 DataFrame 형식으로 데이터 출력

  • 모든 NFL 팀과 거래 유형을 나열하세요

Related MCP server: nfl-mcp

설치

지엑스피1

커서를 사용한 사용

이 MCP를 Cursor와 함께 사용하려면 .cursor/mcp.json 파일에 다음 구성을 추가하세요.

{
  "mcpServers": {
    "nfl-transactions": {
      "command": "python server.py",
      "env": {}
    }
  }
}

MCP 직접 실행

# Run the MCP server via Cursor
cursor run-mcp nfl-transactions

사용 가능한 도구

1. 페치_트랜잭션

지정된 필터에 따라 NFL 거래를 가져옵니다.

매개변수:

  • start_date (필수): YYYY-MM-DD 형식의 시작 날짜

  • end_date (필수): YYYY-MM-DD 형식의 종료 날짜

  • transaction_type (선택 사항, 기본값: "모두"): 필터링할 거래 유형

  • team (선택사항): 팀 이름

  • player (선택 사항): 플레이어 이름

  • output_format (선택 사항, 기본값: "json"): 출력 형식(csv, json 또는 데이터 프레임)

예:

{
  "jsonrpc": "2.0",
  "method": "fetch_transactions",
  "params": {
    "start_date": "2023-01-01",
    "end_date": "2023-12-31",
    "transaction_type": "Injury",
    "team": "Patriots"
  },
  "id": 1
}

2. 팀 목록

필터링 가능한 모든 NFL 팀을 나열합니다.

예:

{
  "jsonrpc": "2.0",
  "method": "list_teams",
  "id": 2
}

3. 거래 유형 목록

필터링 가능한 모든 거래 유형을 나열합니다.

예:

{
  "jsonrpc": "2.0",
  "method": "list_transaction_types",
  "id": 3
}

Super Agents와의 통합

이 MCP는 AI 에이전트 또는 슈퍼 에이전트와 쉽게 통합되도록 설계되었습니다. 에이전트는 JSON-RPC 요청을 통해 이 MCP와 상호 작용하고 사용자 쿼리를 기반으로 NFL 거래 데이터를 검색할 수 있습니다.

에이전트 통합 예시:

# Example of an agent calling the MCP
import json
import subprocess

def call_mcp(method, params=None):
    request = {
        "jsonrpc": "2.0",
        "method": method,
        "params": params or {},
        "id": 1
    }
    
    # Call the MCP via cursor
    cmd = ["cursor", "run-mcp", "nfl-transactions"]
    proc = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE, text=True)
    
    # Send the request and get the response
    response, _ = proc.communicate(json.dumps(request))
    return json.loads(response)

# Example: Get Patriots injury transactions from 2023
result = call_mcp("fetch_transactions", {
    "start_date": "2023-01-01",
    "end_date": "2023-12-31",
    "transaction_type": "Injury",
    "team": "Patriots"
})

print(f"Found {len(result['data'])} transactions")

특허

MIT 라이센스

A
license - permissive license
Not graded
quality - not tested
C
maintenance

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    A command-line interface application that enables interactive chat with AI models through the Anthropic API, supporting document retrieval, command-based prompts, and extensible tool integrations.
  • A
    license
    Not graded
    quality
    A
    maintenance
    An MCP server that provides access to over 12 years of NFL play-by-play data through a local DuckDB database. It enables users to query player performance, team statistics, and situational efficiency metrics like EPA and WPA using natural language.
    13
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    CLI and MCP server for EdgeFinder sports analysis. Get AI-powered NFL, NBA, and MLB betting recommendations, player stats, odds, schedules, and Polymarket portfolio tracking from your terminal or AI agent.
    67
    2
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    A factual NFL data server that provides player search, profiles, statistics, schedules, rosters, and more via MCP tools, with automatic on-demand retrieval and transparent caching from nflverse.
    18
    Apache 2.0

View all related MCP servers

Related MCP Connectors

  • NBA MCP — player, team, and game data via the BallDontLie API

  • Read-only fantasy analysis for ESPN, Yahoo, and Sleeper leagues via MCP

  • Query SEC EDGAR filings, XBRL financials, and company data through MCP. STDIO & Streamable HTTP.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/einreke/nfl-transactions-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server