sportspage-feeds

sportspage-feeds

4.0

The Sportspage Feeds MCP server provides detailed team and schedule data, real-time scores, and betting odds for top US sports leagues.

The Sportspage Feeds MCP server is designed for sports enthusiasts, offering comprehensive data for major US sports leagues such as the NFL, NBA, MLB, NHL, NCAAF, and NCAAB. It provides real-time scores, team and schedule data, and betting odds, making it a valuable resource for developers and businesses looking to integrate sports data into their applications. The server operates on a freemium model with various subscription tiers, allowing up to 50 requests per second on the basic plan.

Features

  • {'name': 'Team and Schedule Data', 'description': 'Access comprehensive information about teams and their schedules across all covered leagues.'}
  • {'name': 'Real-time Scores', 'description': 'Stay updated with the latest scores as games progress.'}
  • {'name': 'Betting Odds', 'description': 'Get insights into betting odds for various games, assisting in informed decision-making.'}

MCP Tools

  • Rankings: Provides league rankings for NCAAF and NCAAB.
  • Teams: Retrieves a list of teams within a specified league, conference, or division.
  • Game By ID: Fetches details for a specific game using its unique identifier.
  • Games: Returns a list of games, with optional filters for odds, status, league, date, and more.
  • Conferences: Provides a list of conferences and divisions within a specified league.
  • Odds: Returns the odds history for a game, with options to filter by odds type.

Usage with Different Platforms

python

python
import requests

url = 'https://api.sportspagefeeds.com/v1/scores'
headers = {'Authorization': 'Bearer YOUR_API_KEY'}
response = requests.get(url, headers=headers)
print(response.json())

javascript

javascript
fetch('https://api.sportspagefeeds.com/v1/scores', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY'
  }
})
.then(response => response.json())
.then(data => console.log(data));