MCP Catalogs
Home

filesystem vs android-source-explorer-mcp

Side-by-side comparison to help you pick between these two MCP servers.

filesystem
by modelcontextprotocol
android-source-explorer-mcp
by mrmike
Stars★ 85,748★ 91
30d uses
Score7749
Official
Categories
File SystemDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsFile System
LanguageTypeScriptPython
Last committhis month2 mo ago

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

android-source-explorer-mcp · Summary

An MCP server providing direct access to Android source code for AI-assisted development.

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

android-source-explorer-mcp · Use cases

  • Understanding Android framework internals like Activity lifecycle and ViewModel restoration
  • Real-time documentation lookup for Jetpack libraries and AndroidX components
  • Cross-referencing code implementations across millions of lines of source code

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

android-source-explorer-mcp · Install

Installation

Prerequisites

  • uv (Recommended) or Python 3.11+
  • Git

Recommended Installation (via uv)

uv tool install git+https://github.com/mrmike/android-source-explorer-mcp

Initial Sync

# Sync API 36 (Android 16) and common AndroidX packages
android-source-explorer sync --api-level 36 --androidx "compose,lifecycle,activity"

Configuration

{
  "mcpServers": {
    "android-sources": {
      "command": "android-source-explorer",
      "args": ["serve"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.