LonelyTavern

Can you run SillyTavern on iPhone? Three ways that work

Last updated September 16, 2026 · iPhone and iPad · By the developer of LonelyTavern

The short answer

Route 1: your PC on the same Wi-Fi

This is what the SillyTavern docs recommend. Do it on the computer that already runs SillyTavern.

  1. Find config.yaml in the SillyTavern folder itself, not the one under default. It exists once SillyTavern has run at least once.
  2. Turn on listening. Change the line to listen: true.
  3. Allow your home network. The server refuses to start with listening on and no access control, so add the whitelist the docs give for "any device on the local network":
    whitelist:
      - ::1
      - 127.0.0.1
      - 10.0.0.0/8
      - 172.16.0.0/12
      - 192.168.0.0/16
  4. Restart SillyTavern. The console should now say it is listening on 0.0.0.0:8000. If it still says 127.0.0.1, the edit did not take.
  5. Open it on the iPhone. In Safari, go to http:// followed by the PC's local address and :8000, for example http://192.168.1.20:8000. Windows shows the address under Wi-Fi settings; on a Mac it is in System Settings under Wi-Fi, Details.
  6. Add it to the Home Screen. Tap Share, then Add to Home Screen. SillyTavern opens full screen with its own icon, like an app.

If the page will not load, the usual causes are the PC's firewall blocking Node on the first run, the phone on a guest network, or the whitelist missing 127.0.0.1. The docs also offer a username and password through basicAuthMode. It travels in plain text, so the docs suggest HTTPS if that concerns you.

Route 2: away from home, through a VPN

The docs are blunt about the alternative: never expose the server to the internet with port forwarding. Use a VPN or a tunnel instead. Their tunneling guide lists four options, and Tailscale is the one with a step-by-step walkthrough.

Route 3: SillyTavern running on the iPhone itself

An unofficial fork ports the whole Node.js backend to run on the device, with no server anywhere. Know what it involves before you start.

If what you want is your cards and your key on your phone

All three routes keep SillyTavern itself, and if you use its extensions, group chats, and presets, that is the right call. If what you actually need is your characters, your API key, and your iPhone, that is why we built LonelyTavern: a native iPhone and Android app that imports V3 character cards, world-info lorebooks, and Tavern-format chat histories, works with any OpenAI-compatible provider under your own key, and keeps everything on the device. Free, no account, no ads, no PC left running. It is not full SillyTavern (no extensions or group chats), but for the core loop it is install-and-go.

Download on the App Store Get it on Google Play

Related guides: Fix SillyTavern on Termux (Android) · Character.AI: export your chats and keep them · all guides.

Sources

SillyTavern, Tailscale, and the iOS port are independent projects of their respective authors. LonelyTavern is not affiliated with or endorsed by any of them. Steps follow the official SillyTavern documentation at docs.sillytavern.app as read on September 16, 2026; check there for current instructions.