You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1) Build from source yourself or get the prebuilt APK from the releases section.
@@ -21,12 +23,63 @@ Lets you run Python scripts with or without included binaries on Android.
21
23
5) AutoPie will try to download an init binary & configuration archive and extract it into the `AutoSec` directory. If it fails, you can download the `autosec.tar.xz` file and extract to the `AutoSec` folder.
22
24
6) Optional: Disable Battery Optimization for AutoPie.
23
25
26
+
24
27
## Usage
25
28
26
29
1) Open AutoPie App
27
30
2) There are currently two types of commands. `Share Sheet Commands`, `Folder Observer Commands` and `Cron Commands`.
28
31
3) Add your desired Commands in the AutoPie App by clicking on Add Button or Edit an already existing command.
29
32
33
+
34
+
## New MCP Server
35
+
AutoPie now comes with your own MCP server that you can use to automate your phone with AI Tools.
36
+
37
+
The server is easily extensible by adding your scripts to the /ExternalStorage/AutoSec/mcp_modules folder.
38
+
39
+
The scripts inside this folder will be included as tools in the MCP server.
40
+
41
+
You can add any kind of functionality on your phone with this by just writing a Python script.
"message": f"File '{input.filepath}' created successfully"
73
+
}
74
+
exceptExceptionas e:
75
+
return {
76
+
"status": "error",
77
+
"message": f"Failed to create file: {str(e)}"
78
+
}
79
+
80
+
```
81
+
82
+
30
83
## Troubleshooting
31
84
* Check that the `AutoSec` folder contains `observers.json` for Folder Observation Automation, `shares.json` for Share Sheet Configuration and `cron.json` for Cron Configuration. And a `bin` folder with the binaries like `ffmpeg`.
0 commit comments