Skip to main content
Glama
Nam0101

android-mcp-toolkit

by Nam0101

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-drawable to get XML for Android resources.

  • Debugging: while running the app, call read-adb-logcat with package name or tag to capture crashes and filtered logs without leaving the MCP client.

Previews

SVG to VectorDrawable

  • Figma request → SVG extraction
    Figma request via MCP

  • Flag conversion preview (single)
    Flag conversion preview

  • Batch flag review (side-by-side)
    Batch flag review

  • Batch run via MCP (console)
    Batch run via MCP

ADB logcat tool

  • Crash capture prompt (inputs + filters)
    Crash logcat prompt

  • Response preview (summarized logcat)
    Response gap prompt

Current tools

  • convert-svg-to-android-drawable

    • Inputs: svg (inline) or svgPath (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 outputPath is provided.

    • Performance: LRU cache (32 entries) keyed by SVG + options plus fast reuse in-session.

    • Converter: vendored fork in vendor/svg2vectordrawable with fixes for rgb()/rgba(), hsl()/hsla(), and named colors. Upstream license: vendor/svg2vectordrawable/LICENSE (MIT).

  • manage-logcat

    • Inputs:

      • action: read (default), crash, anr, or clear.

      • packageName: Optional. Resolves PID via adb shell pidof.

      • pid: Optional. Explicit PID.

      • tag: Optional. Filter by tag (e.g. MyApp).

      • priority: V, D, I, W, E, F, S (default V).

      • maxLines: Tail count (default 200, max 2000).

      • timeoutMs: Default 5000.

    • Behavior:

      • read: Fetches logcat tail.

      • crash: Fetches logcat -b crash.

      • anr: Fetches recent ActivityManager ANR logs + tail of /data/anr/traces.txt.

      • clear: clears logcat buffers.

  • get-current-activity

    • Inputs: timeoutMs (default 5000, max 15000).

    • Behavior: Inspects dumpsys window to find the currently focused app/window. Useful to verify state.

  • dump-ui-hierarchy

    • Inputs: timeoutMs (default 10000).

    • Behavior: Captures current UI hierarchy as XML via uiautomator.

  • take-screenshot

    • Inputs: outputPath (required), timeoutMs.

    • Behavior: Saves device screenshot to local file.

  • inject-input

    • Inputs: command (tap, text, swipe, keyevent, back, home), args (array), timeoutMs.

    • Optional: elementId or elementText (finds element center and taps it).

    • Behavior: Simulates user interaction suitable for testing flows.

  • estimate-text-length-difference

    • Inputs: sourceText (original), translatedText (to compare), tolerancePercent (default 30, max 500).

    • 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 install

  • npm run build

  • node 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.svg

  • Output 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 tools
convert-svg-to-android-drawableSVG to VectorDrawableA

Convert SVG markup or files into Android VectorDrawable XML quickly, optionally writing to disk.

ParametersJSON Schema
NameRequiredDescriptionDefault
svgNoInline SVG markup to convert
svgPathNoPath to an SVG file to read
outputPathNoOptional output path for generated VectorDrawable XML
floatPrecisionNoDecimal precision when serializing coordinates
fillBlackNoForce fill color black when missing
xmlTagNoInclude XML declaration
tintNoAndroid tint color (e.g. #FF000000)
cacheNoReuse cached result for identical inputs within this process

TDQS

A3.6/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
timeoutMsNoTimeout in milliseconds

TDQS

B3.1/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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%).

ParametersJSON Schema
NameRequiredDescriptionDefault
sourceTextYesOriginal text before translation
translatedTextYesTranslated text to compare against the original
tolerancePercentNoAllowed absolute percent difference between lengths before flagging risk

TDQS

A3.8/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
timeoutMsNoTimeout per adb call in milliseconds

TDQS

B3.2/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
commandYesInput command type
argsNoArguments for the command (e.g. [x, y] for tap, ["text"] for text). Optional if elementId/elementText provided.
elementIdNoFind element by resource-id and tap its center (e.g. "com.example:id/button")
elementTextNoFind element by text content and tap its center (e.g. "Login")
timeoutMsNoTimeout in milliseconds

TDQS

B3.3/5.0
Behavior2/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 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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
actionNoAction to perform: read logs, get crash buffer, check ANR, or clear buffer.read
packageNameNoAndroid package name; resolves pid via adb shell pidof
pidNoExplicit process id for logcat --pid
tagNoLogcat tag to include (uses -s tag)
priorityNoMinimum priority (e.g. D for debug).V
maxLinesNoTail line count (logcat -t).
timeoutMsNoTimeout per adb call in milliseconds

TDQS

A3.5/5.0
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. 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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
outputPathYesLocal path to save the screenshot (e.g. screenshot.png)
timeoutMsNoTimeout in milliseconds

TDQS

B3.2/5.0
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 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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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.

  1. 10 tool updatesv1.0.0
    • Removedcheck-anr-state
    • Removedclear-logcat-buffer
    • Addeddump-ui-hierarchy
    • Addedestimate-text-length-difference
    • Removedfetch-crash-stacktrace
    • Removedget-pid-by-package
    • Addedinject-input
    • Addedmanage-logcat
    • Removedread-adb-logcat
    • Addedtake-screenshot
  2. 7 tool updates
    • First observedcheck-anr-state
    • First observedclear-logcat-buffer
    • First observedconvert-svg-to-android-drawable
    • First observedfetch-crash-stacktrace
    • First observedget-current-activity
    • First observedget-pid-by-package
    • First observedread-adb-logcat

TDQS

A3.6/5.0
Disambiguation5/5

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.

Naming Consistency4/5

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.

Tool Count5/5

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.

Completeness3/5

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

ActivityInactive
ResponsivenessNo issues

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

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    MCP server for converting SVG files to Android Vector Drawable XML, enabling seamless integration with Figma MCP for Android development.
    1
    11
    11
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Unofficial 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
  • F
    license
    B
    quality
    C
    maintenance
    MCP server that fetches Figma data (file trees, nodes, images, components, styles, variables) and serves as a foundation for Flutter code generation.
    13
    -
  • A
    license
    Not graded
    quality
    A
    maintenance
    Figma 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.
    12
    MIT

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/Nam0101/android-mcp-toolkit'

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