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
config-template.js•549 B
/**
* Configuration template for httptoolkit Frida interception scripts.
* Tokens are replaced by bundle.ts before injection.
*
* Based on: https://github.com/httptoolkit/frida-interception-and-unpinning (MIT)
*/
// These values are substituted at bundle time:
const PROXY_HOST = '{{PROXY_HOST}}';
const PROXY_PORT = {{PROXY_PORT}};
const CERT_PEM = `{{CERT_PEM}}`;
// Export for use by other scripts
globalThis.HTTPTOOLKIT_PROXY_HOST = PROXY_HOST;
globalThis.HTTPTOOLKIT_PROXY_PORT = PROXY_PORT;
globalThis.HTTPTOOLKIT_CERT_PEM = CERT_PEM;