MCP Tools Management
Manage the available MCP Tools for the Agent
Add New Tool
Available Tools
0
Mobile Device Integration
Synchronous HTTP responses for Siri Shortcuts and Voice Assistants
How does it work?
When you send
mobile_device: true, the HTTP request automatically waits for the agent's final response and returns it as Plain Text. No webhooks, no polling - simply synchronous!
Comparison: Normal vs. Mobile Requests
Normal Request
POST /api/message
{
"message": "Hello Agent"
}
Immediate Response:
Agent responds via Telegram/WhatsApp
HTTP 202 AcceptedAgent responds via Telegram/WhatsApp
Mobile Device Request
POST /api/message
{
"message": "What's the weather?",
"mobile_device": true
}
Waits for Agent...
Response:
HTTP 200 OK (after 5-15 sec)Response:
The weather is sunny
Example: Siri Shortcut Integration
1
Configure HTTP Request
| Method | POST |
| URL | http://<YOUR_AGENT_IP>:8015/api/message |
| Headers | Content-Type: application/json |
2
Body JSON
{
"message": "What's the weather today?",
"mobile_device": true
}
3
Process Response
Response is Plain Text - directly usable!
Example:
No JSON parsing required
Example:
"The weather is sunny at 22C"No JSON parsing required
Technical Details
Timeout
Maximum wait time: 5 minutes
On timeout:
On timeout:
HTTP 504
Response Format
Content-Type:
Encoding:
text/plainEncoding:
UTF-8
Processing
Response is cleaned
No internal markers or debug info
No internal markers or debug info
System Prompt
Base Instructions for the Agent - editable
Persistent Memory
Automatically synchronized from agent_memory.txt
To edit memory, use the Memory tab. Changes are automatically synchronized here.
READ-ONLY
Agent Memory
Persistent Memory Notes - Edit, add or delete
0 memory entries