Skip to main content
Glama

Frida MCP Server

by nonsleepr
logger.ts969 B
/** * Logging utility for Frida MCP Server */ export class Logger { private name: string; constructor(name: string) { this.name = name; } private formatMessage(level: string, message: string): string { const timestamp = new Date().toISOString(); return `[${timestamp}] ${level} [${this.name}] ${message}`; } info(message: string): void { console.error(this.formatMessage('INFO', message)); } debug(message: string): void { console.error(this.formatMessage('DEBUG', message)); } warning(message: string): void { console.error(this.formatMessage('WARNING', message)); } error(message: string, error?: Error): void { let msg = this.formatMessage('ERROR', message); if (error) { msg += `\n${error.stack || error.message}`; } console.error(msg); } } export const logger = new Logger('frida-mcp');

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/nonsleepr/frida-mcp.ts'

If you have feedback or need assistance with the MCP directory API, please join our Discord server