We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yfe404/proxy-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
init.ts•772 B
/**
* Initialize and register all interceptors with the manager.
* Called once at startup from index.ts.
*/
import { interceptorManager } from "./manager.js";
import { TerminalInterceptor } from "./terminal.js";
import { ChromeInterceptor } from "./chrome.js";
import { AndroidAdbInterceptor } from "./android-adb.js";
import { AndroidFridaInterceptor } from "./android-frida.js";
import { DockerInterceptor } from "./docker.js";
export function initInterceptors(): void {
interceptorManager.register(new TerminalInterceptor());
interceptorManager.register(new ChromeInterceptor());
interceptorManager.register(new AndroidAdbInterceptor());
interceptorManager.register(new AndroidFridaInterceptor());
interceptorManager.register(new DockerInterceptor());
}