We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/zinja-coder/jadx-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
debug_tools.py•1.32 kB
"""
JADX MCP Server - Debugging Tools
This module provides MCP tools for runtime debugging of Android applications
through JADX, enabling inspection of execution state, threads, and variables.
Author: Jafar Pathan (zinja-coder@github)
License: See LICENSE file
"""
from src.server.config import get_from_jadx
async def debug_get_stack_frames() -> dict:
"""
Get current stack frames (call stack).
Returns:
dict: Current execution stack trace when process is suspended
MCP Tool: debug_get_stack_frames
Description: Inspects call stack during debugging sessions
"""
return await get_from_jadx("debug/stack-frames")
async def debug_get_threads() -> dict:
"""
Get all threads in the debugged process.
Returns:
dict: List of all active threads with their states
MCP Tool: debug_get_threads
Description: Enumerates all threads in the running application
"""
return await get_from_jadx("debug/threads")
async def debug_get_variables() -> dict:
"""
Get current variables when process is suspended.
Returns:
dict: Local and instance variables at current breakpoint
MCP Tool: debug_get_variables
Description: Inspects variable values during debugging pause
"""
return await get_from_jadx("debug/variables")