UNPKG

@siva-sub/mcp-public-transport

Version:

A Model Context Protocol server for Singapore transport data with real-time information and routing

16 lines (15 loc) 375 B
export class BaseTool { createSchema(properties, required) { return { type: 'object', properties, required: required || [], }; } formatError(error, toolName) { return { error: `Tool '${toolName}' failed: ${error.message}`, timestamp: new Date().toISOString(), }; } }