android-mcp-toolkit
The Android MCP Toolkit is an MCP server that bridges AI agents to Android development tools, providing asset conversion, debugging, UI testing, and localization utilities.
Asset Conversion
Convert SVG markup or files to Android VectorDrawable XML with options for precision, tint, caching, and file output
Device Debugging & Diagnostics
Read and filter ADB logcat output by package, PID, tag, or priority with configurable line limits and timeouts
Fetch recent crash stacktraces from the crash buffer, optionally filtered by package/PID
Check ANR (Application Not Responding) state via ActivityManager logs and traces files
Resolve process IDs for Android package names
Get currently focused activity/window
Clear logcat buffers
UI Testing & Inspection
Dump UI hierarchy as XML via UIAutomator
Take screenshots and save to local files
Inject input events: taps, text input, swipes, key events, and navigation (back/home)
Find and interact with UI elements by ID or text
Localization Support
Estimate translation length differences to flag potential layout-breaking changes
Key Features: Zero-friction operation via npx, LRU caching for SVG conversions, configurable timeouts, and agent-friendly structured outputs optimized for LLM parsing.
Provides tools for Android development including SVG to VectorDrawable conversion, adb logcat reading with package/pid/tag filters, crash stacktrace fetching, ANR state checking, and current activity detection for debugging and asset management.
Enables zero-friction SVG to VectorDrawable conversion without requiring Android Studio to be launched, streamlining the asset conversion workflow for Android projects.
Integrates with Figma to extract SVG designs and convert them directly to Android VectorDrawable XML resources for use in Android projects.
Converts SVG files or inline SVG content to Android VectorDrawable XML format with caching, customizable float precision, fill options, and tint support.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@android-mcp-toolkitconvert this SVG to an Android VectorDrawable with fillBlack enabled"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Android MCP Toolkit for AI Agents
Small MCP server with three tools:
Fast SVG → Android VectorDrawable conversion (cached, file or inline).
adb logcat reader with package/pid/tag filters for quick crash triage.
Translation length difference estimator to flag risky length deltas before layout breaks.
Why this exists
The Mission: Bringing Native Android to the AI Agent Era
While the AI ecosystem flourishes with web-first tools, Android development often feels left behind. This MCP server is my answer to that gap—a dedicated bridge connecting AI Agents directly to the Android toolchain.
⚡ Zero-Friction Asset Conversion: Convert SVGs to VectorDrawables instantly without the overhead of launching Android Studio.
🔍 Direct Diagnostic Access: Empower agents to pull, filter, and analyze adb logcat streams (by package, PID, or tag) in real-time.
🤖 Agent-Native Architecture: Deliver structured, scriptable outputs that LLMs can parse and act upon efficiently.
🚀 Built for Extensibility: A solid foundation designed to grow, paving the way for future utilities like bitmap helpers and asset validation.
Related MCP server: Local Figma MCP Bridge
Pairing ideas
Figma MCP: grab SVGs from designs, feed to
convert-svg-to-android-drawableto get XML for Android resources.Debugging: while running the app, call
read-adb-logcatwith package name or tag to capture crashes and filtered logs without leaving the MCP client.
Previews
SVG to VectorDrawable
Figma request → SVG extraction

Flag conversion preview (single)

Batch flag review (side-by-side)

Batch run via MCP (console)

ADB logcat tool
Crash capture prompt (inputs + filters)

Response preview (summarized logcat)

Current tools
convert-svg-to-android-drawableInputs:
svg(inline) orsvgPath(file path). Optional:outputPath,floatPrecision(default 2),fillBlack(default false),xmlTag(default false),tint,cache(default true).Output: VectorDrawable XML text; also writes to disk when
outputPathis provided.Performance: LRU cache (32 entries) keyed by SVG + options plus fast reuse in-session.
Converter: vendored fork in
vendor/svg2vectordrawablewith fixes forrgb()/rgba(),hsl()/hsla(), and named colors. Upstream license:vendor/svg2vectordrawable/LICENSE(MIT).
manage-logcatInputs:
action:read(default),crash,anr, orclear.packageName: Optional. Resolves PID viaadb shell pidof.pid: Optional. Explicit PID.tag: Optional. Filter by tag (e.g.MyApp).priority:V,D,I,W,E,F,S(defaultV).maxLines: Tail count (default 200, max 2000).timeoutMs: Default 5000.
Behavior:
read: Fetches logcat tail.crash: Fetcheslogcat -b crash.anr: Fetches recent ActivityManager ANR logs + tail of/data/anr/traces.txt.clear: clears logcat buffers.
get-current-activityInputs:
timeoutMs(default5000, max15000).Behavior: Inspects
dumpsys windowto find the currently focused app/window. Useful to verify state.
dump-ui-hierarchyInputs:
timeoutMs(default 10000).Behavior: Captures current UI hierarchy as XML via
uiautomator.
take-screenshotInputs:
outputPath(required),timeoutMs.Behavior: Saves device screenshot to local file.
inject-inputInputs:
command(tap,text,swipe,keyevent,back,home),args(array),timeoutMs.Optional:
elementIdorelementText(finds element center and taps it).Behavior: Simulates user interaction suitable for testing flows.
estimate-text-length-differenceInputs:
sourceText(original),translatedText(to compare),tolerancePercent(default30, max500).Behavior: Measures grapheme length of both strings, computes percent change, and reports whether it exceeds the tolerance (useful to catch translation length blowups that could break layouts).
Roadmap (planned)
Additional MCP tools for Android assets (e.g., batch conversions, validations, optimizers).
Optional resource prompts for common Android drawables/templates.
Quick start
npm installnpm run buildnode dist/index.js(stdio MCP server)
Run via npx
Global:
npx android-mcp-toolkit
Use in Cursor (MCP config)
Add to your Cursor settings JSON:
{
"mcpServers": {
"android-mcp-toolkit": {
"command": "npx",
"args": [
"-y",
"android-mcp-toolkit"
]
}
}
}The npx call downloads the published package; no local path required.
Quick install via Cursor deep link:
cursor://anysphere.cursor-deeplink/mcp/install?name=android-mcp-toolkit&config=eyJjb21tYW5kIjoibnB4IC15IGFuZHJvaWQtbWNwLXRvb2xraXQifQ%3D%3D
Examples
Input SVG:
sample_svg.svgOutput VectorDrawable:
examples/sample_svg.xml
Notes
Transport: stdio via
@modelcontextprotocol/sdk.Base deps kept minimal; everything needed to convert SVGs is vendored/included.
Contact
Available Tools
7 toolsconvert-svg-to-android-drawableSVG to VectorDrawableA
Convert SVG markup or files into Android VectorDrawable XML quickly, optionally writing to disk.
| Name | Required | Description | Default |
|---|---|---|---|
| svg | No | Inline SVG markup to convert | |
| svgPath | No | Path to an SVG file to read | |
| outputPath | No | Optional output path for generated VectorDrawable XML | |
| floatPrecision | No | Decimal precision when serializing coordinates | |
| fillBlack | No | Force fill color black when missing | |
| xmlTag | No | Include XML declaration | |
| tint | No | Android tint color (e.g. #FF000000) | |
| cache | No | Reuse cached result for identical inputs within this process |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; the description mentions conversion and optional disk write, but does not detail caching, precision, tint, or error handling. Schema covers parameters but tool behavior beyond that is not disclosed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence of 16 words, efficient and front-loaded with the action. No unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 8 parameters, no output schema, and no annotations, the description is too minimal. It does not clarify what the tool returns (e.g., XML string) when no output path is given, nor error conditions.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so baseline is 3. The description adds no additional meaning beyond the schema parameter descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool converts SVG markup or files into Android VectorDrawable XML, with an optional disk write. The verb and resource are specific, and no sibling tools overlap.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool vs alternatives, but sibling tools are unrelated, so differentiation is not critical. The description could mention caching or precision settings but does not.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
dump-ui-hierarchyDump UI Hierarchy (XML)B
Capture the current UI hierarchy as XML using uiautomator.
| Name | Required | Description | Default |
|---|---|---|---|
| timeoutMs | No | Timeout in milliseconds |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description bears full burden. It only states the action but does not disclose side effects, permissions, or if the UI is disrupted. No mention of requirements like accessibility service.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence with no extraneous words. Could benefit from slight structural expansion but is efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simplicity (one optional param, no output schema), the description is too minimal. It omits what the XML contains, return format, or any limitations, leaving gaps for an agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with a well-described timeout parameter (default, min, max). The description adds nothing beyond the schema, leaving baseline at 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Capture', the resource 'current UI hierarchy', and the format 'XML', using 'uiautomator'. It distinguishes from siblings like 'get-current-activity' (activity vs hierarchy) and 'take-screenshot' (visual vs structural).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does 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 (e.g., when to dump hierarchy vs take a screenshot or get current activity). Missing information about preconditions or context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
estimate-text-length-differenceEstimate text length differenceA
Compare original and translated text lengths to detect layout risk; configurable tolerancePercent (default 30%).
| Name | Required | Description | Default |
|---|---|---|---|
| sourceText | Yes | Original text before translation | |
| translatedText | Yes | Translated text to compare against the original | |
| tolerancePercent | No | Allowed absolute percent difference between lengths before flagging risk |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the burden. It discloses that it compares lengths and flags risk based on tolerance, but does not explicitly state that it is a read-only operation or describe any side effects. This is adequate but not comprehensive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that efficiently conveys the tool's purpose and key configurable parameter. No wasted words, and the most important information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description lacks information about the output format or return value, which is significant since no output schema exists. For a tool with low complexity, the description should at least hint at what is returned (e.g., a boolean, percentage, or risk flag). This gap reduces completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters well. The description adds marginal value by mentioning the default tolerancePercent, but does not provide additional semantics beyond what the schema offers. Baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'compare original and translated text lengths to detect layout risk'. It uses a specific verb ('compare') and resource ('text lengths'), and is distinct from sibling tools which are unrelated.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use (for layout risk detection), but does not explicitly state when not to use or list alternatives. However, given the context, usage context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get-current-activityGet current activity/window focusB
Inspect current focused app/window via dumpsys window.
| Name | Required | Description | Default |
|---|---|---|---|
| timeoutMs | No | Timeout per adb call in milliseconds |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose behavioral traits. It mentions 'inspect' and 'dumpsys window' but does not state side effects (likely none), read-only nature, permission requirements, or reliability. The agent cannot infer if this is safe or non-destructive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence, front-loading the purpose efficiently. However, it omits necessary usage guidance and behavioral details, which reduces its completeness while maintaining conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with one optional parameter and no output schema, the description provides the core function but lacks usage context and behavioral transparency. It is minimally adequate but leaves gaps for an agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%; the schema already describes timeoutMs with default, min, max. The description adds no parameter information beyond what the schema provides, so baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool inspects the current focused app/window using 'dumpsys window'. The verb 'inspect' and resource 'current focused app/window' are specific. Sibling tools cover different functionalities (e.g., dump-ui-hierarchy gives UI tree), so this tool is well-differentiated.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives like dump-ui-hierarchy. The description does not specify prerequisites, typical use cases, or situations where this tool is preferable. The agent lacks context for tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
inject-inputInject Input EventsB
Simulate user input interactions (tap, text, swipe, keyevents) or click by UI element.
| Name | Required | Description | Default |
|---|---|---|---|
| command | Yes | Input command type | |
| args | No | Arguments for the command (e.g. [x, y] for tap, ["text"] for text). Optional if elementId/elementText provided. | |
| elementId | No | Find element by resource-id and tap its center (e.g. "com.example:id/button") | |
| elementText | No | Find element by text content and tap its center (e.g. "Login") | |
| timeoutMs | No | Timeout in milliseconds |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It only states 'simulate user input interactions' without disclosing potential side effects, state changes, or behavior like whether input is injected into the active app or system wide. The description lacks key behavioral details.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that concisely lists the main types of input. It is front-loaded with the core purpose. However, it could be slightly more structured by separating the command list from the UI element click capability.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 5 parameters, no output schema, and no annotations, the description is too brief. It does not explain return values, error cases, timing behavior, or how element-based clicking works. For a complex input simulation tool, more context is needed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% coverage with descriptions for each parameter, so the description adds minimal additional meaning. The schema already explains the 'command' enum and the optional parameters 'args', 'elementId', 'elementText', and 'timeoutMs'. The description does not further clarify parameter usage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool simulates various input types like tap, text, swipe, keyevents, and click by UI element. It is specific about the actions and differentiates from sibling tools like 'dump-ui-hierarchy' or 'take-screenshot'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description lists available commands but provides no guidance on when to use this tool vs alternatives, or when not to use it. There is no mention of prerequisites or context for each command type.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
manage-logcatManage ADB LogcatA
Unified tool to read logs, capture crashes, check ANRs, and clear buffers.
| Name | Required | Description | Default |
|---|---|---|---|
| action | No | Action to perform: read logs, get crash buffer, check ANR, or clear buffer. | read |
| packageName | No | Android package name; resolves pid via adb shell pidof | |
| pid | No | Explicit process id for logcat --pid | |
| tag | No | Logcat tag to include (uses -s tag) | |
| priority | No | Minimum priority (e.g. D for debug). | V |
| maxLines | No | Tail line count (logcat -t). | |
| timeoutMs | No | Timeout per adb call in milliseconds |
TDQS
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. It hints at different behaviors (reading vs clearing) but does not disclose side effects (e.g., clearing buffers loses data) or performance implications. For a tool with multiple actions, more transparency is needed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, well-formed sentence that front-loads the purpose and lists capabilities concisely. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the moderate complexity (7 parameters, multiple actions) and no output schema, the description should explain what the tool returns (e.g., log text, crash dump). It does not, leaving the return format unclear.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage for all 7 parameters. The description adds no further parameter-specific context beyond 'log management', so a baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('manage logs') and explicitly lists distinct capabilities ('read logs, capture crashes, check ANRs, and clear buffers'). It clearly distinguishes from sibling tools which focus on UI hierarchy, screenshots, etc.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this is the go-to tool for all log-related tasks ('Unified tool') but does not explicitly state when to use it versus alternatives or mention any exclusion criteria. Sibling tools are different domains, so no conflict, but guidance is minimal.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
take-screenshotTake User ScreenshotB
Capture device screenshot and save to a local file.
| Name | Required | Description | Default |
|---|---|---|---|
| outputPath | Yes | Local path to save the screenshot (e.g. screenshot.png) | |
| timeoutMs | No | Timeout in milliseconds |
TDQS
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 fails to mention file overwrite behavior, permission requirements, error handling, or what happens on timeout. The minimal description omits critical behavioral traits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence that captures the essential action and result without any extraneous words. It is optimally concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite few parameters and no output schema, the description lacks critical context such as file overwrite policy, timeout behavior, and return value expectation. The tool's behavior is under-described, leaving gaps for agent decision-making.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so all parameters are described in the schema. The description adds no additional semantic meaning beyond what the schema already provides, leading to a baseline score.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Capture device screenshot') and the output ('save to a local file'), making the tool's purpose unambiguous. It effectively distinguishes this tool from its siblings, which deal with UI hierarchy, input injection, and other device operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does 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, nor are there prerequisites or context about typical use cases. The description solely states what the tool does without any usage advice.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
10 tool updates
v1.0.0- Removed
check-anr-state - Removed
clear-logcat-buffer - Added
dump-ui-hierarchy - Added
estimate-text-length-difference - Removed
fetch-crash-stacktrace - Removed
get-pid-by-package - Added
inject-input - Added
manage-logcat - Removed
read-adb-logcat - Added
take-screenshot
7 tool updates
- First observed
check-anr-state - First observed
clear-logcat-buffer - First observed
convert-svg-to-android-drawable - First observed
fetch-crash-stacktrace - First observed
get-current-activity - First observed
get-pid-by-package - First observed
read-adb-logcat
TDQS
Each tool targets a distinct aspect of Android device interaction: drawing conversion, UI hierarchy, text estimation, activity info, input simulation, logcat management, and screenshot capture. No two tools overlap in purpose.
Most tools follow a verb-noun pattern (e.g., dump-ui-hierarchy, inject-input), but 'convert-svg-to-android-drawable' breaks this pattern with a longer descriptive phrase. Overall, the naming is still readable and predictable.
Seven tools cover the essential aspects of Android device testing and automation without being overwhelming. The count is well-scoped for the toolkit's purpose.
The toolkit covers core UI testing operations (hierarchy, input, screenshot, logcat) but lacks tools for app management, clipboard access, or device configuration. The inclusion of SVG conversion and text length estimation adds niche functionality, but common tasks like UI element querying (beyond typing coordinates) are missing.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Free MCP tools: the only MCP linter, health checks, cost estimation, and trust evaluation.
Remote MCP for Android CLI agent build gate, structured receipts, audit logs, and reviewer-ready evi
238+ dev tools via MCP: JSON, QR, PDF, DNS, hash, UUID, code review, JWT, SSL, WHOIS, and more
MCP tools for TON Sites, TON DNS and TON Storage.
Related MCP Servers
- AlicenseAqualityCmaintenanceMCP server for converting SVG files to Android Vector Drawable XML, enabling seamless integration with Figma MCP for Android development.11111MIT
- AlicenseNot gradedqualityCmaintenanceUnofficial local MCP bridge for reading the currently open Figma file through a Figma plugin. Provides tools to inspect selection, file info, and export selected nodes as SVG/PNG.MIT
- FlicenseBqualityCmaintenanceMCP server that fetches Figma data (file trees, nodes, images, components, styles, variables) and serves as a foundation for Flutter code generation.13-
- AlicenseNot gradedqualityAmaintenanceFigma MCP server with full read/write access via plugin bridge — no API token, no rate limits. 83 tools for design automation: styles, variables, components, prototypes, and content.12MIT
Appeared in Searches
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/Nam0101/android-mcp-toolkit'
If you have feedback or need assistance with the MCP directory API, please join our Discord server