Skip to main content
Glama

Frida MCP Server

by nonsleepr
types.ts814 B
/** * Type definitions for Frida MCP Server */ export interface FridaDevice { id: string; name: string; type: string; } export interface FridaProcess { pid: number; name: string; } export interface FridaModule { name: string; base: string; size: number; path: string; } export interface ScriptMessage { type: string; payload?: any; data?: string | null; // base64 encoded binary data } export interface ExecutionReceipt { type: 'execution_receipt'; result?: string; error?: { message: string; stack?: string; }; initial_logs: string[]; } export interface SessionInfo { session_id: string; is_alive: boolean; is_detached: boolean; active_scripts: number; pending_messages: number; error?: string; }

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