vex-mcp-server
Version:
MCP server for VEX Robotics Competition data using RobotEvents API
25 lines • 641 B
TypeScript
/**
* Team-related request handlers for MCP tools
*/
import { SearchTeamsParams, GetTeamInfoParams } from "../types/index.js";
export declare class TeamHandlers {
/**
* Handles search-teams tool requests
*/
static handleSearchTeams(args: SearchTeamsParams): Promise<{
content: {
type: string;
text: string;
}[];
}>;
/**
* Handles get-team-info tool requests
*/
static handleGetTeamInfo(args: GetTeamInfoParams): Promise<{
content: {
type: string;
text: string;
}[];
}>;
}
//# sourceMappingURL=team-handlers.d.ts.map