Use NodeTool on your mobile device. The mobile app lets you run Mini Apps and chat with AI assistants from anywhere.
New to NodeTool? Start with the Getting Started guide on desktop first.
Overview
The NodeTool mobile app brings AI workflows to your phone and tablet:
| Feature | Description |
|---|---|
| AI Chat | Real-time chat with AI models, streaming responses |
| Mini Apps | Run your workflows with a simple interface |
| Cross-platform | Works on iOS, Android, and web browsers |
| Server Connection | Connect to any NodeTool server |
Getting the App
From App Stores (Coming Soon)
The app will be available on:
- iOS: Apple App Store
- Android: Google Play Store
For Developers
Build and run from source:
# Clone the NodeTool repository
git clone https://github.com/nodetool-ai/nodetool.git
cd nodetool/mobile
# Install dependencies
npm install
# Start the development server
npm start
Then:
- Press
ifor iOS Simulator (macOS only) - Press
afor Android Emulator - Press
wfor web browser - Scan the QR code with Expo Go on your phone
Connecting to Your Server
The mobile app requires a running NodeTool server.
Configure Server URL
- Open the app
- Go to Settings (gear icon)
- Enter your server URL
- Tap Test Connection
- Save when successful
Server URLs by Platform
| Platform | Server URL |
|---|---|
| iOS Simulator | http://localhost:7777 |
| Android Emulator | http://10.0.2.2:7777 |
| Physical Device | http://<your-computer-ip>:7777 |
Physical devices must be on the same network as your NodeTool server.
AI Chat
Chat with AI models from your mobile device.
Features
- Streaming responses – See text appear in real-time
- Model selection – Choose from available AI models
- Markdown rendering – Code blocks, formatting, syntax highlighting
- Stop generation – Tap stop to cancel long responses
- Multiple threads – Keep separate conversation topics
How to Chat
- Tap the Chat icon in the header
- Select a model (tap model name)
- Type your message
- Tap Send
- Watch the AI respond in real-time
Tips
- Use the + button to start a new conversation
- Tap Stop to halt long responses
- Scroll up to review conversation history
- Switch models mid-conversation if needed
Mini Apps
Run your NodeTool workflows with a simplified mobile interface.
What Are Mini Apps?
Mini Apps are workflows converted to simple interfaces. They hide the complexity of the workflow and show only:
- Input fields
- Run button
- Results
Running a Mini App
- Open the Mini Apps screen
- Browse available apps
- Tap an app to open it
- Fill in the inputs:
- Text fields – Type your input
- Number fields – Enter values
- Toggle switches – Enable/disable options
- Tap Run
- View results below
Supported Input Types
| Type | Description |
|---|---|
| Text | Single or multi-line text input |
| Number | Numeric values |
| Boolean | On/off toggle switches |
Server Requirements
Your NodeTool server must be:
- Running – Start with
nodetool serve --port 7777 - Accessible – On same network as your device
- Configured – With the models you want to use
Starting the Server
# Activate environment
conda activate nodetool
# Start server
nodetool serve --port 7777
The server runs at http://localhost:7777 by default.
Firewall Settings
If connecting from a physical device, ensure:
- Port 7777 is open on your computer’s firewall
- Your router allows local network connections
- Both devices are on the same WiFi network
Troubleshooting
Cannot Connect to Server
Symptoms: “Connection failed” or timeout errors
Solutions:
- Verify the server is running
- Check the server URL in Settings
- For physical devices:
- Use your computer’s IP address (not localhost)
- Ensure same WiFi network
- Check firewall settings
Android Emulator Connection Issues
Problem: Cannot reach localhost
Solution: Use http://10.0.2.2:7777 instead of localhost:7777. This is Android’s special IP for the host machine.
App Crashes on Startup
Solutions:
- Clear app data and restart
- Check that all dependencies are installed:
npm install - Reset Metro bundler:
npm start --reset-cache
Chat Not Streaming
Symptoms: Responses appear all at once
Solutions:
- Check WebSocket connection
- Verify server is running current version
- Try a different AI model
Platform Notes
iOS
- Requires Xcode for development (macOS only)
- Use iOS Simulator for testing
- Production builds via EAS Build
Android
- Requires Android Studio for development
- Use Android Emulator for testing
- Use
10.0.2.2for localhost access
Web
- Works in any modern browser
- Good for testing without mobile device
- Run with
npm run web
Building for Production
Use Expo’s EAS Build for production apps:
# Install EAS CLI
npm install -g eas-cli
# Log in to Expo
eas login
# Build for Android
eas build --platform android --profile preview
# Build for iOS
eas build --platform ios --profile preview
For store submissions:
# Google Play Store (AAB format)
eas build --platform android --profile production
# Apple App Store
eas build --platform ios --profile production
See EAS Build Documentation for details.
Related Topics
- Getting Started – Desktop setup and first workflow
- User Interface – Full UI guide
- Mini Apps – Creating Mini Apps
- Global Chat – Chat features in detail
- API Reference – Server API documentation