Machine-To-Machine/m2m-mcp-server-ssh-client
If you are the rightful owner of m2m-mcp-server-ssh-client and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
A Model Context Protocol Server (Remote SSH client) that connects to remote MCP servers over SSH, enabling secure access to MCP tools hosted on remote servers.
Tools
Functions exposed to the LLM to take actions
get_stories
Get stories from Hacker News. The options are top
, new
, ask_hn
, show_hn
for types of stories. This doesn't include the comments. Use get_story_info
to get the comments.
get_user_info
Get user info from Hacker News, including the stories they've submitted
search_stories
Search stories from Hacker News. It is generally recommended to use simpler queries to get a broader set of results (less than 5 words). Very targetted queries may not return any results.
get_story_info
Get detailed story info from Hacker News, including the comments
get_daily_results
Fetch MLB game results for a given date (default is today) Args: date (str): The date for fetching game results. Returns: list: A list of dictionaries containing game details.
get_mlb_schedule
Retrieves the MLB game schedule for a specified date range, optionally for a specific team.
Args:
start_date (str, optional): The start date for the schedule (YYYY-MM-DD). Defaults to today.
end_date (str, optional): The end date for the schedule (YYYY-MM-DD). Defaults to today.
team_id (int, optional): The ID of the team to get the schedule for. Defaults to None (all teams).
Returns:
list: A list of dictionaries, where each dictionary represents a game in the schedule.
Each game dictionary contains details like game ID, date, time, home team, away team, etc.
mlb_team_result
Retrieves the results (scoring plays and highlights) for a specific MLB team's most recent game.
Args:
team_name (str): The name of the MLB team (e.g., "Los Angeles Dodgers").
date (str, optional): The date for the schedule (YYYY-MM-DD). Defaults to today.
Returns:
dict or None: A dictionary containing the scoring plays and game highlights for the team's most recent game,
or None if no game is found for the team.
The dictionary has the following structure:
{
"scoring_plays": list, # List of scoring plays
"game_highlights": list # List of game highlights
}
get_event_schedule
Get Formula One race calendar for a specific season
get_event_info
Get detailed information about a specific Formula One Grand Prix
get_session_results
Get results for a specific Formula One session
get_driver_info
Get information about a specific Formula One driver
analyze_driver_performance
Analyze a driver's performance in a Formula One session
compare_drivers
Compare performance between multiple Formula One drivers
get_telemetry
Get telemetry data for a specific Formula One lap
get_championship_standings
Get Formula One championship standings
Prompts
Interactive templates invoked by user choice
No prompts
Resources
Contextual data attached and managed by the client