# DailyLife Integration
## Configuration
The RPA MCP server has been added to DailyLife configuration at `~/.dailylife/config.yaml`:
```yaml
httpMcpServers:
- name: rpa
url: http://localhost:9100
description: RPA automation with AI vision (6 tools)
```
## Usage
Once DailyLife is running, you can use RPA tools:
```bash
# Click at coordinates
dailylife "click at 100,200"
# Type text
dailylife "type hello world"
# Take screenshot
dailylife "take screenshot"
# Natural language automation
dailylife "open calculator and type 5 plus 3"
# Advanced workflow
dailylife "set variable user to admin, then loop 3 times copying test to clipboard"
```
## Available Tools
1. **rpa_click** - Click at screen coordinates
2. **rpa_type** - Type text
3. **rpa_screenshot** - Take screenshot
4. **rpa_execute** - Execute workflow steps
5. **rpa_advanced** - Advanced workflows (variables, loops, conditionals)
6. **rpa_natural** - Natural language automation
## Health Check
```bash
dailylife health
```
Should show RPA server status with 6 tools available.
## Notes
- RPA service must be running on port 9100
- Start with: `~/projects/rpa-mcp-server/control.sh start`
- DailyLife will route commands to RPA server automatically