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 { IAbapConnection } from '@mcp-abap-adt/interfaces';
export class MockAbapConnection {
private throwError() {
throw new Error(
'Stdio mode without configuration (--mcp-config-file or .env) is limited to tool inspection only. Please provide configuration to execute tools.',
);
}
get connectionOptions() {
return {};
}
get sdkClient() {
return {};
}
async get() {
this.throwError();
}
async post() {
this.throwError();
}
async put() {
this.throwError();
}
async delete() {
this.throwError();
}
async request() {
this.throwError();
}
async head() {
this.throwError();
}
async options() {
this.throwError();
}
}