We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AsafShai/nba-fantasy-israel-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•464 B
"""Fantasy NBA League MCP Server.
A Model Context Protocol server for accessing Fantasy NBA League statistics and rankings.
"""
from fantasy_nba_israel_mcp.server import (
mcp,
getAveragesLeagueRankings,
getTeams,
getAverageStats,
getTeamDetails,
getLeagueShotsStats
)
__version__ = "0.2.0"
__all__ = [
"mcp",
"getAveragesLeagueRankings",
"getTeams",
"getAverageStats",
"getTeamDetails",
"getLeagueShotsStats"
]