list_capabilities
Discover available game hacking tools for memory scanning, value modification, pattern matching, function hooking, and code injection across processes.
Instructions
List all tools provided by this MCP server.
Returns:
Dictionary with MCP info and available tools organized by category.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- Implementation of the list_capabilities tool. This handler function returns a dictionary containing the MCP server name, version, description, availability of Frida and screenshot features, categorized lists of available tools, and total tool count.@mcp.tool() def list_capabilities() -> Dict[str, Any]: """ List all tools provided by this MCP server. Returns: Dictionary with MCP info and available tools organized by category. """ return { "mcp_name": "frida-game-hacking-mcp", "version": "1.1.0", "description": "Cheat Engine-like game hacking capabilities through Frida", "frida_available": FRIDA_AVAILABLE, "screenshot_available": SCREENSHOT_AVAILABLE, "tool_categories": { "process_management": [ "list_processes", "attach", "detach", "spawn", "resume", "get_session_info" ], "memory_operations": [ "read_memory", "write_memory", "scan_value", "scan_next", "scan_changed", "scan_unchanged", "scan_pattern", "get_scan_results", "clear_scan", "list_memory_regions" ], "module_information": [ "list_modules", "get_module_info", "get_module_exports", "get_module_imports", "resolve_symbol" ], "function_hooking": [ "hook_function", "unhook_function", "replace_function", "hook_native_function", "list_hooks", "intercept_module_function" ], "debugging": [ "set_breakpoint", "remove_breakpoint", "list_breakpoints", "read_registers" ], "script_management": [ "load_script", "unload_script", "call_rpc" ], "window_interaction": [ "list_windows", "screenshot_window", "screenshot_screen", "send_key_to_window", "focus_window" ], "standard": [ "list_capabilities", "get_documentation", "check_installation" ] }, "total_tools": 42 }