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
import type { HandlerContext } from '../../../lib/handlers/interfaces';
import { handleRuntimeListDumps } from '../../system/readonly/handleRuntimeListDumps';
import { compactDumpListSchema } from './compactSchemas';
export const TOOL_DEFINITION = {
name: 'HandlerDumpList',
description:
'Runtime dump list. object_type: not used. Required: none. Optional: user, inlinecount, top, skip, orderby. Response: JSON.',
inputSchema: compactDumpListSchema,
} as const;
type HandlerDumpListArgs = {
user?: string;
inlinecount?: 'allpages' | 'none';
top?: number;
skip?: number;
orderby?: string;
};
export async function handleHandlerDumpList(
context: HandlerContext,
args: HandlerDumpListArgs,
) {
return handleRuntimeListDumps(context, args);
}