A

Android Studio

Bridge to Android Studio and adb.

·No reviews yet
Repo
Share:

About

Auto-generated

Android Studio is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Android Studio.

What does the Android Studio MCP enable?
This MCP facilitates communication between an MCP client and Android Studio, providing a bridge to its functionalities, particularly those related to Android debug Bridge (ADB). It allows for control and interaction with mobile devices through the familiar Android Studio environment.
How can I deploy this MCP for use with a client like Cline?
Installation typically involves cloning the repository from GitHub and running the provided server script. While the exact steps depend on your client's MCP configuration, you would generally configure Cline to connect to the local address and port where the Android Studio MCP server is running.
Are there any authentication requirements for using this Android Studio MCP?
No, this MCP does not require any API keys, OAuth, or other authentication credentials. It operates with a 'none' authentication type, meaning direct access to the server is permitted, making initial setup straightforward.
What are the primary tools or capabilities exposed by this MCP?
The Android Studio MCP primarily exposes capabilities related to Android Debug Bridge (ADB). This allows for interactions like installing applications, debugging, and general device management directly through your MCP client, leveraging Android Studio's existing toolchain.
Is there a cost associated with using the Android Studio MCP?
This MCP is provided by the community and is open-source, so there is no direct cost for the MCP itself. Any costs would be associated with your existing Android Studio installation or specific mobile development tools and services you utilize.
What is a prerequisite for running this Android Studio MCP?
A prerequisite for utilizing this MCP is having Android Studio and its accompanying Android SDK (including ADB) installed and configured on your system. The MCP acts as an interface to these existing tools, not a replacement for them.

Install Android Studio

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "android-studio": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-android-studio"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "android-studio": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-android-studio"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "android-studio": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-android-studio"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.