Metadata-Version: 2.4
Name: screen-buffer-mcp
Version: 2.0.0
Summary: MCP server for fast Android screenshots via scrcpy frame buffer
Project-URL: Homepage, https://github.com/vladkarpman/screen-buffer-mcp
Project-URL: Repository, https://github.com/vladkarpman/screen-buffer-mcp
Project-URL: Issues, https://github.com/vladkarpman/screen-buffer-mcp/issues
Author-email: Vladislav Karpman <vladislavkarpman@gmail.com>
License-Expression: MIT
License-File: LICENSE
Keywords: android,claude,frame-buffer,mcp,scrcpy,screenshot
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Testing
Requires-Python: >=3.11
Requires-Dist: adbutils>=2.0.0
Requires-Dist: mcp>=1.25.0
Requires-Dist: mysc>=3.0.0
Requires-Dist: numpy>=1.24.0
Requires-Dist: pillow>=10.0.0
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.21.0; extra == 'dev'
Requires-Dist: pytest>=7.0.0; extra == 'dev'
Description-Content-Type: text/markdown

# device-manager-mcp

MCP server for fast Android device interaction with scrcpy acceleration.

<!-- mcp-name: io.github.vladkarpman/device-manager-mcp -->

## Features

- **Fast operations** via scrcpy (~50ms latency)
- **Automatic fallback** to adb (~500ms) when scrcpy unavailable
- **Screenshots, taps, swipes, typing** - all device interactions
- **Works with Claude Code** and any MCP-compatible client

## Requirements

- macOS 12+, Python 3.11+, adb, scrcpy 3.x
- Android device connected via USB

See [docs/requirements.md](docs/requirements.md) for detailed setup instructions.

## Usage with Claude Code

Add to your `.mcp.json`:

```json
{
  "mcpServers": {
    "device-manager": {
      "command": "uvx",
      "args": ["device-manager-mcp"]
    }
  }
}
```

Or add globally:

```bash
claude mcp add device-manager -s user -- uvx device-manager-mcp
```

## Available Tools

| Tool | Description | Latency |
|------|-------------|---------|
| `device_screenshot` | Capture screen as PNG | ~40ms (scrcpy) / ~500ms (adb) |
| `device_tap` | Tap at coordinates | ~50ms (scrcpy) / ~200ms (adb) |
| `device_swipe` | Swipe gesture | ~300ms |
| `device_type` | Type text | ~100ms |
| `device_press_key` | Press BACK, HOME, ENTER, etc. | ~50ms |
| `device_list` | List connected devices | ~100ms |
| `device_screen_size` | Get screen dimensions | ~10ms |
| `device_backend_status` | Check active backend | instant |

## How It Works

The server automatically selects the best backend:

1. **scrcpy backend** (if available): Uses MYScrcpy library to communicate directly with scrcpy server on device. Provides ~50ms latency for screenshots and input.

2. **adb backend** (fallback): Uses standard `adb` commands. Works everywhere but slower (~500ms for screenshots).

## Example

```python
# Claude Code will automatically use these tools:

# Take a screenshot
device_screenshot()

# Tap at coordinates
device_tap(x=540, y=1200)

# Swipe down
device_swipe(start_x=540, start_y=800, end_x=540, end_y=1600)

# Type text
device_type(text="Hello World")

# Press back button
device_press_key(key="BACK")
```

## Configuration

### Environment Variables

- `DEVICE_MANAGER_LOG_LEVEL`: Set logging level (DEBUG, INFO, WARNING, ERROR)

### Multiple Devices

Specify device ID for multi-device setups:

```python
device_tap(x=100, y=200, device="RFCW318P7NV")
```

## Development

```bash
git clone https://github.com/vladkarpman/device-manager-mcp
cd device-manager-mcp
pip install -e ".[dev]"
pytest
```

## License

MIT License - see [LICENSE](LICENSE) for details.

## Related Projects

- [mobile-mcp](https://github.com/anthropics/mobile-mcp) - Official Anthropic mobile MCP
- [MYScrcpy](https://github.com/nicholasrobinson/myscrcpy) - Python scrcpy client
- [Claude Code](https://claude.ai/code) - AI coding assistant
