iMessage Wiki Access
Working with the wiki from iMessage / mobile. Three viable approaches: Cursor Cloud Agents via iOS Shortcuts, Codex mobile via ChatGPT app, and the existing Remote MCP server.
Option 1: Cursor Cloud Agents + iOS Shortcuts (Recommended)
mgalpert/cursor-shortcut enables delegating tasks to Cursor Cloud Agents from Apple Watch, iPhone, or any Apple device via iOS Shortcuts. Source: GitHub, 2026-05-19
How it works:
- iOS Shortcut captures voice dictation or text input
- POST request to
https://api.cursor.com/v0/agentswith the task - Cloud Agent spins up with the kevin-wiki repo
- Agent reads AGENTS.md, runs the task, commits results
- Kevin reviews from phone or later in Cursor
Better variant: Deploy a Cloudflare Worker as middleware to keep API keys secure, enable logging, webhooks, and access control. Worker can also parse incoming iMessages forwarded via Shortcuts automation.
Setup: Generate API key from Cursor Dashboard → Integrations. Copy the pre-built shortcut. Point it at the wiki repo.
Option 2: Codex Mobile (ChatGPT App)
OpenAI launched full Codex mobile access in May 2026 across ChatGPT iOS/Android app. Source: OpenAI, 2026-05-14
Capabilities from phone:
- Start new tasks from prompts or GitHub issues
- Watch live agent runs in remote environments
- Review and approve diffs before merging
- Comment on Codex-opened PRs
- Swap models mid-task
Setup: ChatGPT app → Settings → Codex → Environments → Link GitHub + kevin-wiki repo.
Third-party alternatives:
- Remodex (2.6K stars): iOS app with local-first bridge for macOS
- rmtcdx: Web-based mobile-first UI via
npx rmtcdx - Clawdex Mobile: mobile app with Tailscale/LAN support
Option 3: Remote MCP Server (Already Built)
Kevin's wiki already has a remote MCP server at scripts/serve-mcp.ts. Combined with ngrok tunnel, any MCP client can access the wiki remotely. Source: wiki, AGENTS.md
npx tsx scripts/serve-mcp.ts --remote
npx tsx scripts/serve-mcp.ts create-token "imessage-client"
This gives query/get/multi_get/status over HTTP with bearer auth. An iOS Shortcut could call this API directly to search or read wiki pages.
Comparison
| Approach | Can read wiki | Can write wiki | Latency | Setup complexity |
|---|---|---|---|---|
| Cursor Cloud + Shortcuts | Yes | Yes (commits) | ~30-60s per task | Medium (API key + shortcut) |
| Codex Mobile (ChatGPT) | Yes | Yes (PRs) | ~15-30s per task | Low (app + GitHub link) |
| Remote MCP + Shortcuts | Yes | No (read-only) | ~2-5s per query | Medium (ngrok + token) |
| Cursor Cloud + Cloudflare Worker | Yes | Yes (commits) | ~30-60s per task | High (worker + shortcut + webhook) |
The iMessage Flow
For the tightest integration, chain: iMessage → Shortcuts automation (trigger on keyword) → Cursor Cloud API → agent runs on wiki repo → result posted back via Shortcuts notification or webhook to iMessage.
Kevin sends "wiki: what do we know about TanStack" from iMessage. Shortcut fires. Cloud agent searches the wiki. Result comes back as a notification. The wiki becomes accessible from any Apple device without opening a laptop. Source: compiled, 2026-05-19
Concept Position
| Field | Value |
|---|---|
| Concept family | Brain, memory, and retrieval |
| Concept owned | Working with the wiki from iMessage / mobile. Three viable approaches: Cursor Cloud Agents via iOS Shortcuts, Codex mobile via ChatGPT app,... |
| Category map | Concept System Map |
Timeline
- 2026-07-01 | Concepts category refresh added this page to the Brain, memory, and retrieval family, linked it to Concept System Map, and kept it standalone because it owns this reusable mental model: Working with the wiki from iMessage / mobile. Three viable approaches: Cursor Cloud Agents via iOS Shortcuts, Codex mobile via ChatGPT app,... Source: User request, 2026-07-01
- 2026-05-19 | Page created. Compiled from Cursor Cloud API docs, mgalpert/cursor-shortcut, Codex mobile launch, and existing remote MCP server. Source: User + web research, 2026-05-19