llm-app-exploration vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
llm-app-exploration by ForrestKim42 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 23 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | — | TypeScript |
| Last commit | 1 mo ago | this month |
llm-app-exploration · Summary
MCP servers for automated app exploration via accessibility APIs, building complete UI maps and transition tables.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
llm-app-exploration · Use cases
- Systematic UI mapping and documentation of mobile and desktop applications
- Automated competitive analysis by exploring entire app ecosystems
- Building deterministic user flows for automated testing or user assistance
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
llm-app-exploration · Install
Installation
mobile-mcp (Android/iOS)
- Clone the repository:
git clone https://github.com/ForrestKim42/mobile-mcp.git - Follow the platform-specific instructions for Android or iOS setup
- Add to your MCP configuration:
{
"mcpServers": {
"mobile": {
"command": "node",
"args": ["/path/to/mobile-mcp/index.js"]
}
}
}desktop-mcp (macOS)
- Clone the repository:
git clone https://github.com/ForrestKim42/desktop-mcp.git - Follow the setup instructions for macOS accessibility permissions
- Add to your MCP configuration:
{
"mcpServers": {
"desktop": {
"command": "node",
"args": ["/path/to/desktop-mcp/index.js"]
}
}
}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.