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
/**
* Unified configuration system
* Exports all configuration-related classes and types
*/
export { ArgumentsParser, type ParsedArguments } from './ArgumentsParser.js';
export { ConfigLoader } from './ConfigLoader.js';
export type { HandlerSet, IServerConfig, Transport } from './IServerConfig.js';
// Runtime configuration
export { buildRuntimeConfig } from './runtimeConfig.js';
// Server configuration manager
export { ServerConfigManager } from './ServerConfigManager.js';
export type { YamlConfig } from './yamlConfig.js';
// YAML configuration
export {
applyYamlConfigToArgs,
generateConfigTemplateIfNeeded,
generateYamlConfigTemplate,
loadYamlConfig,
parseConfigArg,
validateYamlConfig,
} from './yamlConfig.js';