kntn-dev-mcp
Version:
MCP server providing comprehensive kintone development support including API specs, field types, and development tips
23 lines • 754 B
JavaScript
export class ValidateApiRequest {
static name = "validate_api_request";
static description = "Validate a kintone API request against the specification";
static inputSchema = {
type: "object",
properties: {
endpoint: { type: "string" },
method: { type: "string" },
requestBody: { type: "object" },
},
required: ["endpoint", "method"],
};
static async run(args) {
// Stub implementation - will be filled in during actual implementation
return {
valid: true,
endpoint: args.endpoint,
method: args.method,
message: "Mock validation result",
};
}
}
//# sourceMappingURL=ValidateApiRequest.js.map