jobnimbus-mcp-client
Version:
JobNimbus MCP Client - Connect Claude Desktop to remote JobNimbus MCP server
19 lines • 393 B
JavaScript
/**
* Base Tool Class for MCP Tools
*/
import jobNimbusClient from '../services/jobNimbusClient.js';
export class BaseTool {
/**
* Validate input (override if needed)
*/
validateInput(_input) {
// Default: no validation
}
/**
* Get JobNimbus client
*/
get client() {
return jobNimbusClient;
}
}
//# sourceMappingURL=baseTool.js.map