{"name":"sports-intel","version":"1.0.0","tools":[{"name":"search_team","description":"Search for a sports team by name. Returns team info including sport, league, country, stadium, capacity, and description. Covers soccer, basketball, baseball, football, and more globally.","inputSchema":{"type":"object","properties":{"name":{"type":"string","description":"Team name (e.g. 'Arsenal', 'Los Angeles Lakers', 'New York Yankees', 'Barcelona', 'New England Patriots')"}},"required":["name"]}},{"name":"search_league","description":"Search for a sports league or competition by name. Returns league details including sport, country, and current season.","inputSchema":{"type":"object","properties":{"name":{"type":"string","description":"League name (e.g. 'Premier League', 'NBA', 'NFL', 'Champions League', 'MLB', 'Serie A')"}},"required":["name"]}},{"name":"get_team_recent_results","description":"Get the most recent match results for a team by its TheSportsDB team ID. Use search_team first to get the team ID.","inputSchema":{"type":"object","properties":{"team_id":{"type":"string","description":"TheSportsDB team ID (from search_team results)"}},"required":["team_id"]}},{"name":"get_team_upcoming_fixtures","description":"Get the upcoming scheduled matches for a team by its TheSportsDB team ID. Use search_team first to get the team ID.","inputSchema":{"type":"object","properties":{"team_id":{"type":"string","description":"TheSportsDB team ID (from search_team results)"}},"required":["team_id"]}},{"name":"search_player","description":"Search for a sports player by name. Returns player info including sport, team, position, nationality, birth date, height, and weight.","inputSchema":{"type":"object","properties":{"name":{"type":"string","description":"Player name (e.g. 'Messi', 'LeBron James', 'Cristiano Ronaldo', 'Tom Brady', 'Mike Trout')"}},"required":["name"]}}]}