Skip to main content
Glama
handleCheckClass.ts5.67 kB
/** * CheckClass Handler - Syntax check for ABAP class via ADT API * * Uses checkClass from @mcp-abap-adt/adt-clients/core/class for class-specific checking. * Supports checking existing classes or hypothetical source code. */ import { AxiosResponse } from '../lib/utils'; import { return_error, return_response, logger, getManagedConnection } from '../lib/utils'; import { CrudClient } from '@mcp-abap-adt/adt-clients'; import { parseCheckRunResponse } from '../lib/checkRunParser'; export const TOOL_DEFINITION = { name: "CheckClass", description: "Perform syntax check on an ABAP class. Can check existing class (active/inactive) or hypothetical source code. Returns syntax errors, warnings, and messages. Can use session_id and session_state from GetSession to maintain the same session.", inputSchema: { type: "object", properties: { class_name: { type: "string", description: "Class name (e.g., ZCL_MY_CLASS)" }, version: { type: "string", description: "Version to check: 'active' (last activated) or 'inactive' (current unsaved). Default: active", enum: ["active", "inactive"] }, source_code: { type: "string", description: "Optional: source code to validate. If provided, validates hypothetical code without creating object." }, session_id: { type: "string", description: "Session ID from GetSession. If not provided, a new session will be created." }, session_state: { type: "object", description: "Session state from GetSession (cookies, csrf_token, cookie_store). Required if session_id is provided.", properties: { cookies: { type: "string" }, csrf_token: { type: "string" }, cookie_store: { type: "object" } } } }, required: ["class_name"] } } as const; interface CheckClassArgs { class_name: string; version?: string; source_code?: string; session_id?: string; session_state?: { cookies?: string; csrf_token?: string; cookie_store?: Record<string, string>; }; } /** * Main handler for CheckClass MCP tool */ export async function handleCheckClass(args: any) { try { const { class_name, version = 'active', source_code, session_id, session_state } = args as CheckClassArgs; if (!class_name) { return return_error(new Error('class_name is required')); } const checkVersion = (version && ['active', 'inactive'].includes(version.toLowerCase())) ? version.toLowerCase() as 'active' | 'inactive' : 'active'; const connection = getManagedConnection(); // Restore session state if provided if (session_id && session_state) { connection.setSessionState({ cookies: session_state.cookies || null, csrfToken: session_state.csrf_token || null, cookieStore: session_state.cookie_store || {} }); } else { // Ensure connection is established await connection.connect(); } const className = class_name.toUpperCase(); logger.info(`Starting class check: ${className} (version: ${checkVersion}, has source: ${!!source_code})`); try { const client = new CrudClient(connection); await client.checkClass(className); const response = client.getCheckResult(); if (!response) { throw new Error('Class check did not return a response'); } // Parse check results const checkResult = parseCheckRunResponse(response); // Get updated session state after check const updatedSessionState = connection.getSessionState(); logger.info(`✅ CheckClass completed: ${className}`); logger.info(` Status: ${checkResult.status}`); logger.info(` Errors: ${checkResult.errors.length}, Warnings: ${checkResult.warnings.length}`); return return_response({ data: JSON.stringify({ success: checkResult.success, class_name: className, version: checkVersion, check_result: checkResult, session_id: session_id, session_state: updatedSessionState ? { cookies: updatedSessionState.cookies, csrf_token: updatedSessionState.csrfToken, cookie_store: updatedSessionState.cookieStore } : null, message: checkResult.success ? `Class ${className} has no syntax errors` : `Class ${className} has ${checkResult.errors.length} error(s) and ${checkResult.warnings.length} warning(s)` }, null, 2) } as AxiosResponse); } catch (error: any) { logger.error(`Error checking class ${className}:`, error); let errorMessage = `Failed to check class: ${error.message || String(error)}`; if (error.response?.status === 404) { errorMessage = `Class ${className} not found.`; } else if (error.response?.data && typeof error.response.data === 'string') { try { const { XMLParser } = require('fast-xml-parser'); const parser = new XMLParser({ ignoreAttributes: false, attributeNamePrefix: '@_' }); const errorData = parser.parse(error.response.data); const errorMsg = errorData['exc:exception']?.message?.['#text'] || errorData['exc:exception']?.message; if (errorMsg) { errorMessage = `SAP Error: ${errorMsg}`; } } catch (parseError) { // Ignore parse errors } } return return_error(new Error(errorMessage)); } } catch (error: any) { return return_error(error); } }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/fr0ster/mcp-abap-adt'

If you have feedback or need assistance with the MCP directory API, please join our Discord server