Skip to main content
Glama
0xhackerfren

Frida Game Hacking MCP

by 0xhackerfren

list_processes

Identify running processes on a system to target for game hacking, reverse engineering, or memory manipulation tasks using Frida.

Instructions

List all running processes.

Args:
    filter_name: Optional filter to match process names (case-insensitive)

Returns:
    List of processes with PID and name.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
filter_nameNo

Implementation Reference

  • The main handler function for the 'list_processes' tool. It uses Frida to enumerate running processes on the local device, filters by name if provided, sorts them alphabetically, limits to 100 results, and returns a dictionary with count and list of processes (PID and name). Handles Frida not available and exceptions.
    @mcp.tool()
    def list_processes(filter_name: str = "") -> Dict[str, Any]:
        """
        List all running processes.
        
        Args:
            filter_name: Optional filter to match process names (case-insensitive)
        
        Returns:
            List of processes with PID and name.
        """
        if not FRIDA_AVAILABLE:
            return {"error": "Frida not installed. Run: pip install frida frida-tools"}
        
        try:
            device = get_device()
            processes = device.enumerate_processes()
            
            result = []
            for proc in processes:
                if filter_name and filter_name.lower() not in proc.name.lower():
                    continue
                result.append({"pid": proc.pid, "name": proc.name})
            
            result.sort(key=lambda x: x["name"].lower())
            return {"count": len(result), "processes": result[:100]}
        
        except Exception as e:
            return {"error": f"Failed to enumerate processes: {str(e)}"}

Latest Blog Posts

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/0xhackerfren/frida-game-hacking-mcp'

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