Android Forensics ADB MCP Server
Server Quality Checklist
Latest release: v1.0.0
- Disambiguation5/5
Each tool targets a distinct forensic data source or action: root status, logcat, dmesg, packages, settings, network, processes, file extraction, partitions, and accounts. There is no overlap; even capture_logcat and capture_dmesg are clearly differentiated as system/app logs vs kernel buffer.
Naming Consistency5/5All tool names follow a consistent verb_noun pattern using snake_case (check_root_status, capture_logcat, get_installed_packages, etc.). The verbs are varied but predictable, and the structure is uniform across the set.
Tool Count5/510 tools is well-scoped for an Android forensics server, covering the major data sources without unnecessary redundancy. The count falls comfortably within the ideal 3-15 range, and each tool earns its place in the toolkit.
Completeness4/5The set covers core forensic acquisition and analysis: device status, logs, installed apps, settings, network, processes, file extraction, partitions, and accounts. Minor gaps exist, such as dedicated tools for SMS/call logs or media files, but the generic extract_with_root can access these if the path is known, making it a workable limitation.
Average 3.9/5 across 10 of 10 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 0 commits in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI status not available
Add a LICENSE file by following GitHub's guide. Once GitHub recognizes the license, the system will automatically detect it within a few hours.
If the license does not appear after some time, you can manually trigger a new scan using the MCP server admin interface.
MCP servers without a LICENSE cannot be installed.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries full responsibility for behavioral disclosure. It mentions 'multiple indicators' but does not disclose whether the check is read-only, requires special permissions, affects device state, or has any limitations. For a detection tool, this is insufficient operational transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded with the core purpose. The first sentence is somewhat redundant with the tool name, but the second sentence and the Args line provide useful detail without excess. Overall, it is appropriately sized and easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (one optional parameter) and the presence of an output schema, the description is largely complete. It explains what the tool checks and what the parameter means. It does not describe prerequisites like device connectivity or interpretation, but these are not critical for such a simple tool with structured output.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0% description coverage, but the description compensates with an explicit Args section: 'device_id: Optional device serial number.' This adds meaningful semantic detail beyond the schema's bare 'Device Id' title and default null, clarifying that the parameter expects a serial number and is optional.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Comprehensive root/jailbreak detection' and 'Checks multiple indicators of device rooting.' This uses a specific verb ('checks') and resource ('device rooting'), and it distinguishes the tool from siblings like extract_with_root (which performs an action using root) and other diagnostic tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. The description only states what the tool does, not the conditions under which it should be invoked, nor any prerequisites or exclusions. There is no mention of related tools or specific scenarios (e.g., before extract_with_root).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It does add useful behavioral context by clarifying that 'running processes' includes active applications and background services, and it notes that output_file saves results as JSON. However, it does not disclose potential errors, device selection behavior when device_id is omitted, or any permissions required.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is very concise, with a clear opening line, a helpful elaboration, and a compact args listing. Every sentence adds value and there is no redundant filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple read-only nature of the tool, the presence of an output schema, and the adequate parameter descriptions, the description is mostly complete. It lacks usage guidelines and behavioral caveats, but these are less critical for a straightforward list operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It effectively explains both parameters: device_id is a device serial number, and output_file is a path for saving JSON results. This adds meaning beyond the bare schema titles.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it gets a list of running processes and identifies active applications and background services. This is a specific verb+resource, but it does not explicitly distinguish from sibling tools such as get_installed_packages, though the resource 'running processes' is inherently distinct.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like get_installed_packages or capture_logcat. There is no mention of exclusions, prerequisites, or typical use cases, so the agent must infer usage from the name and description alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden of behavioral disclosure. It states the core action but omits important details such as whether the tool requires a connected device, how it behaves without device_id, or the exact content of 'details.' No side effects or prerequisites are mentioned, leaving significant transparency gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded with the main purpose. The parameter list is straightforward and compact. The only minor extra is 'Essential for identifying installed applications,' which adds context but could be seen as slightly redundant. Overall, it's efficient and well-organized.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given that the tool has an output schema and only three optional parameters, the description covers basic functionality but lacks depth. It does not explain default behavior (e.g., default device when device_id omitted) or potential side effects of writing to output_file. For a simple list tool, this is sufficient but not rich, leaving some gaps in operational context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 0% description coverage, so the description's parameter list is essential. It provides meaningful semantics for each parameter: device_id as optional serial number, include_system for system apps, and output_file for saving JSON. While brief, it clarifies the role of every parameter, adding value beyond the raw schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb and resource: 'Get list of all installed packages with details.' This unambiguously distinguishes it from sibling tools like get_running_processes or dump_system_settings, which target different system aspects.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives a clear context for use ('Essential for identifying installed applications') but does not explicitly state when to avoid this tool or mention alternatives. Usage guidance is implied rather than explicit, with no exclusions or comparisons to sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose behavioral traits, but it only mentions high-level analysis and outputs. It does not state whether the tool requires special permissions, performs active scanning, or has side effects like writing to the output file.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded, with two sentences of purpose followed by a concise parameter list. Every sentence contributes value with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The presence of an output schema covers return values, but the description lacks operational context such as permission requirements, potential network impact, and the meaning of 'suspicious connections.' The tool is moderately complex, so more context would help.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds meaning with an Args section, explaining device_id as an optional device serial number and output_file as a path to save JSON results. This goes beyond the bare schema titles, though it omits any detailed constraints or interactions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool analyzes active network connections and configuration, listing specific outputs like connected networks, open ports, and suspicious connections. This differentiates it from sibling tools focused on logs, processes, or packages.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use for network analysis but provides no explicit guidance on when to prefer this tool over alternatives, nor any exclusions or prerequisites. It is not misleading but leaves the agent to infer the context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It only says 'Capture Android system logs' and lists parameters; it does not mention whether the operation is safe/read-only, requires special permissions or device connection, or what side effects (e.g., overwriting output_file) might occur. This is a minimal disclosure for a tool with zero annotation support.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with a one-sentence purpose, followed by an arg list where each line is necessary and informative. There is no filler, redundancy, or irrelevant detail, making it highly efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers purpose, parameter semantics, and a hint of context. An output schema exists, so return values need not be explained. However, it omits environmental requirements (e.g., device connectivity, ADB presence) and potential error modes, which would be useful for a 5-parameter tool. Still, for a straightforward capture command, it is mostly complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 0% description coverage, so the description fully compensates by explaining each parameter: output_file as path, device_id as optional serial, lines with default, filter_spec with an example (%*:W% for warnings+), and include_timestamps as a boolean. This provides actionable meaning beyond the raw schema fields.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Capture Android system logs (logcat)' with a specific verb and resource, which matches the tool name and distinguishes the action. It adds context about device activity and app behavior, but it does not explicitly call out sibling tools like capture_dmesg, so it lacks direct sibling differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'Critical for understanding device activity and app behavior' provides clear use-case context, implying when an agent should reach for this tool. However, it does not explicitly state when not to use it or name alternatives, so it falls short of full explicit guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description carries the full burden of disclosing behavior. It mentions that the tool 'dumps' settings and 'reveals' configuration and preferences, which implies a read-only operation, but it does not disclose potential prerequisites (e.g., root access), side effects, or any warnings about the sensitivity of the data. This is a significant gap for a tool that accesses security settings.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded with the primary verb and resource. It adds essential information about what is revealed and then clearly lists parameters. No unnecessary words or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is adequate for a simple dump tool, but it lacks important context such as whether special permissions are required, how to interpret the output (though an output schema exists), and how it compares to related tools. Given the sensitive nature of system settings, more operational context would improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides zero description coverage for the two parameters, but the description compensates by explaining that device_id is an optional serial number and output_file is a path to save results as JSON. This adds meaningful semantics beyond the schema's raw parameter names and types.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: to dump all system settings (secure, system, global). It also specifies the kind of information revealed (device configuration, security settings, user preferences), which distinguishes it from sibling tools like check_root_status or get_running_processes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context about what the tool does and what kind of information it reveals, implying its use for inspecting device configuration and security settings. However, it does not explicitly mention when to use it instead of alternative tools or any exclusions, so it falls short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden for behavioral disclosure. It does not state whether the operation is read-only, whether root or special permissions are required, or what side effects (beyond writing an optional output file) might occur. The term 'analyze' implies non-destructive introspection, but this is not explicit, and prerequisites like device connectivity are omitted.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise: two sentences stating purpose and context, followed by a three-line Args list that adds parameter detail. It is front-loaded with the core purpose and contains no fluff or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (two optional params, no nested objects) and the presence of an output schema, the description covers the essential aspects: purpose, usage context, and parameter meanings. Minor gaps include not mentioning device prerequisites (e.g., whether a device must be connected) or root requirements, but these are not critical given the output schema and simple nature.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. The Args section provides meaningful semantics for both parameters: device_id is described as 'device serial number' and output_file as 'path to save results as JSON,' adding value beyond the bare schema properties. While not exhaustive (e.g., default behavior if omitted), it sufficiently explains parameter intent.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Analyze device partitions and mount points' with a specific verb and resource, and adds context that it is 'Essential for understanding device storage layout.' This distinguishes it from sibling tools like capture_logcat or analyze_network_connections, which focus on other subsystems.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use it ('Essential for understanding device storage layout'), implying use when storage partition information is needed. It does not explicitly exclude alternatives or name when not to use it, but the context is sufficient for a tool with unique purpose among the siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry behavioral disclosure. It reveals the type of accounts returned and the JSON-saving behavior via output_file, but does not discuss permissions, platform constraints, or behavior when no accounts exist.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with a clear purpose statement, followed by a brief, well-structured arg list. Every sentence earns its place with no redundancy or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only tool with two optional parameters and an output schema, the description covers purpose, account types, and output file semantics. It is complete for the tool's complexity, though more on result details could be added.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It provides meaningful explanations for both parameters: device_id as an optional serial number and output_file as an optional JSON path, going beyond the bare schema types.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Get') and identifies the exact resource ('registered accounts'), further clarified as Google, social media, and other linked accounts. This clearly distinguishes it from sibling tools like get_running_processes or dump_system_settings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
It implies the tool is for enumerating accounts on a device, but provides no explicit when-to-use vs alternatives or exclusions. Sibling tools don't overlap, so the context is clear, but explicit guidance is missing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. It adds meaningful information that the tool may require root access and describes the content of the captured data. However, it does not explicitly state whether the operation is read-only, potential side effects, or output handling, leaving some gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured: a one-line summary, a brief explanation of log content, a clearly labeled args list, and a note about root access. Every sentence adds value, and the structure is front-loaded with the main purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with only two parameters and an output schema is present, so the description need not explain return values. It covers purpose, parameters, and a key caveat (root access). Minor gaps exist regarding when to use versus alternatives, but overall it is sufficiently complete for this tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has no parameter descriptions (0% coverage), so the description fully compensates by explaining both parameters: output_file as the path to save dmesg output, and device_id as an optional device serial number. This is clear and actionable, though it lacks examples or format details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool captures the kernel ring buffer (dmesg) and lists the types of logs it contains (hardware events, driver messages, security-related logs). The verb 'Capture' plus the specific resource 'kernel ring buffer' makes the purpose unambiguous and distinct from sibling capture_logcat.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for kernel/hardware/security log investigation, but it does not explicitly state when to use this tool over alternatives like capture_logcat. No direct 'when to use' or 'when not to use' guidance is provided, only inferable context from the log types.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It discloses root requirement and potential security alerts, which is valuable. However, it doesn't describe side effects such as file permissions, whether local directories are created, or error handling, leaving some ambiguity. Credits given for the warning about security alerts.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and well-structured, with purpose, arguments, and warning clearly separated. Every sentence contributes meaningful information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With an output schema present, the description doesn't need to explain return values. It covers purpose, parameters, and important warnings in a concise manner. However, it lacks explicit guidance on when to prefer this tool over siblings, and the absence of annotations leaves a few behavior aspects unclear, but overall it's fairly complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description's Args section is essential. It clearly explains each parameter, gives an example for remote_path, and marks device_id as optional. This compensates for the schema's lack of descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a clear verb-object statement ('Extract files using root privileges') and adds contextual purpose ('Bypasses Android security restrictions for forensic acquisition'). This distinguishes it from sibling tools handling logs, packages, or processes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides clear context for use: forensic acquisition requiring root privileges, and warns about root requirement and security alerts. However, it doesn't explicitly name alternatives or say when not to use it, so it's clear context but no exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/0x-Professor/DroidForensics-Suite'
If you have feedback or need assistance with the MCP directory API, please join our Discord server