iMessage community adapter for Chat SDK. Built on spectrum-ts, Photon's unified messaging SDK. Supports cloud (Spectrum Cloud) and self-hosted iMessage.
pnpm add chat @photon-ai/chat-adapter-imessageThe adapter has two modes:
- Cloud (recommended) — connects to Spectrum Cloud with a project ID + secret. Runs anywhere.
- Self-hosted — connects to your own
@photon-ai/advanced-imessagegRPC endpoint.
The mode is auto-detected from environment variables (see Configuration).
import { Chat } from "chat";
import { createiMessageAdapter } from "@photon-ai/chat-adapter-imessage";
const bot = new Chat({
userName: "mybot",
adapters: {
imessage: createiMessageAdapter({
projectId: process.env.IMESSAGE_PROJECT_ID,
projectSecret: process.env.IMESSAGE_PROJECT_SECRET,
}),
},
});
bot.onNewMention(async (thread, message) => {
await thread.post("Hello from iMessage!");
});Credentials can also be resolved lazily when the adapter is first used, which is useful when retrieving them from a credential broker:
createiMessageAdapter({
credentials: async () => {
const value = await getToken("photon/my-agent", {
subject: { type: "app" },
});
return parsePhotonCredential(value);
},
});The provider must return { projectId, projectSecret }.
- Sign up at app.photon.codes to get your project ID and project secret.
- Set
IMESSAGE_PROJECT_IDandIMESSAGE_PROJECT_SECRET.
Point the adapter at your own @photon-ai/advanced-imessage gRPC server.
- Set
IMESSAGE_SERVER_URLto the server's gRPC address ashost:port(e.g.imessage.example.com:443). - Set
IMESSAGE_API_KEYto the server's auth token.
⚠️ Transport change. Previous versions of this adapter spoke HTTP/Socket.IO. It now uses gRPC via spectrum-ts, soIMESSAGE_SERVER_URLmust be a gRPChost:port, not anhttps://URL. A bare host gets:443appended; any URL scheme is stripped.
For advanced multi-number setups, pass explicit clients instead:
createiMessageAdapter({
clients: [
{ address: "imessage.example.com:443", token: "…", phone: "+1234567890" },
],
});There are two ways to receive inbound messages:
- Webhooks (recommended for serverless) — Spectrum Cloud delivers each message to an HTTPS endpoint as signed JSON. No long-lived connection or cron job. Remote (cloud) mode only.
- Gateway listener —
startGatewayListener()consumes spectrum-ts's message stream in real time. Works in cloud and self-hosted modes; in serverless it needs a cron job to stay connected.
In remote (cloud) mode, Spectrum Cloud can deliver inbound messages to your HTTPS endpoint as signed JSON — see the webhook docs. This is the simplest path for serverless: no cron, no persistent connection.
In the Spectrum Cloud dashboard, register your endpoint URL (public HTTPS only) and copy the per-webhook signing secret — it is shown only once.
Set IMESSAGE_WEBHOOK_SECRET to that signing secret. The adapter verifies the X-Spectrum-Signature HMAC on every delivery and rejects unsigned, mismatched, or stale (>5 min) requests.
IMESSAGE_WEBHOOK_SECRET=whsec_...// app/api/imessage/webhook/route.ts
import { after } from "next/server";
import { bot } from "@/lib/bot";
export async function POST(request: Request): Promise<Response> {
return bot.webhooks.imessage(request, {
waitUntil: (task) => after(() => task),
});
}bot.webhooks.imessage calls the adapter's handleWebhook: it verifies the delivery, parses the messages event, and routes the message into your bot. When a trusted gateway verifies Photon before forwarding, pass webhookVerifier; it receives the request and exact raw body and takes precedence over webhookSecret. Return a falsy value or throw to reject, a string to parse that verified replacement body, or any other truthy value to accept the original body. Processing runs in the background via waitUntil, so the endpoint acknowledges immediately. Spectrum Cloud retries failed deliveries with backoff and delivers at-least-once — dedupe on X-Spectrum-Webhook-Id + message.id if you need exactly-once side effects.
A webhook delivery carries no live connection, but your bot can still respond: the adapter rebuilds the thread — DM or group — from its chat GUID via spectrum-ts's space.get and sends, reacts, edits, and shows typing — no gateway needed.
bot.onNewMention(async (thread, message) => {
await thread.post("Got it!"); // works directly from a webhook delivery
});The rebuild needs spectrum-ts to know which iMessage line the chat belongs to; with multiple lines configured, an unseen thread can't be resolved and the adapter throws NotImplementedError — respond within a thread received over the gateway listener instead (see Limitations).
// app/api/imessage/gateway/route.ts
import { after } from "next/server";
import { bot } from "@/lib/bot";
export const maxDuration = 800;
export async function GET(request: Request): Promise<Response> {
const cronSecret = process.env.CRON_SECRET;
if (!cronSecret) {
return new Response("CRON_SECRET not configured", { status: 500 });
}
const authHeader = request.headers.get("authorization");
if (authHeader !== `Bearer ${cronSecret}`) {
return new Response("Unauthorized", { status: 401 });
}
const durationMs = 600 * 1000;
return bot.adapters.imessage.startGatewayListener(
{ waitUntil: (task) => after(() => task) },
durationMs
);
}// vercel.json
{
"crons": [
{
"path": "/api/imessage/gateway",
"schedule": "*/9 * * * *"
}
]
}This runs every 9 minutes, ensuring overlap with the 10-minute listener duration.
CRON_SECRET is automatically added by Vercel when you configure cron jobs.
| Option | Required | Description |
|---|---|---|
projectId |
Cloud | Spectrum Cloud project ID. Auto-detected from IMESSAGE_PROJECT_ID |
projectSecret |
Cloud | Spectrum Cloud project secret. Auto-detected from IMESSAGE_PROJECT_SECRET |
credentials |
Cloud | Sync or async provider for lazy { projectId, projectSecret } resolution |
serverUrl |
Self-host | gRPC host:port of your iMessage server. Auto-detected from IMESSAGE_SERVER_URL |
apiKey |
Self-host | Auth token for the self-hosted server. Auto-detected from IMESSAGE_API_KEY |
clients |
No | Explicit { address, token, phone }[] for multi-number self-host setups |
phone |
No | Routing/identity phone for legacy self-host (defaults to "shared"). Auto-detected from IMESSAGE_PHONE |
webhookSecret |
No | Per-webhook signing secret for verifying Spectrum Cloud deliveries. Required to receive webhooks unless webhookVerifier is supplied. Auto-detected from IMESSAGE_WEBHOOK_SECRET |
webhookVerifier |
No | Sync or async trusted-forwarder verifier (request, rawBody). Takes precedence over webhookSecret; throw or return a falsy value to reject, return a string to replace the parsed body, or another truthy value to accept the original body. |
logger |
No | Logger instance (defaults to ConsoleLogger("info")) |
# .env.local
# Cloud (recommended)
IMESSAGE_PROJECT_ID=...
IMESSAGE_PROJECT_SECRET=...
# Self-hosted (alternative)
IMESSAGE_SERVER_URL=imessage.example.com:443 # gRPC host:port (NOT an https URL)
IMESSAGE_API_KEY=...
IMESSAGE_PHONE=+1234567890 # optional, for multi-number routing
# Webhooks (remote/cloud only; see "Webhooks")
IMESSAGE_WEBHOOK_SECRET=whsec_... # per-webhook signing secret| Feature | Supported |
|---|---|
| Mentions | DMs only |
| DMs | Yes |
| Open DM (cold-start) | Yes (openDM) |
| File uploads | Yes (send) |
| Reactions (add) | Yes |
| Reactions (remove) | Yes (session-added tapbacks) |
| Message editing | Yes |
| Message delete | Yes (iMessage unsend window) |
| Mark read | Yes (markRead) |
| Typing indicator | Yes |
| Message effects | Yes (sendEffect) |
| Mini-app cards | Yes (sendMiniApp) |
| Voice messages | Yes (sendVoice) |
| Chat background | Yes (setBackground) |
| Modals | Limited |
| Fetch single message | Yes (fetchMessage) |
| Message history | No |
| Thread/chat info | No |
| Cards | Mini-app cards only (sendMiniApp) |
| Streaming | No |
| Ephemeral messages | No |
| Webhooks | Yes (Spectrum Cloud delivery) |
The adapter supports limited modal functionality by mapping the Chat SDK's openModal() to iMessage native polls. Only Select children are supported — the first Select in the modal becomes a poll.
Modal.titlebecomes the poll question.Select.optionsbecome the poll choices (2–10 supported).- Votes trigger
onModalSubmitwith the selected option'svalue.
import { Chat, Modal, Select, SelectOption } from "chat";
import { createiMessageAdapter } from "@photon-ai/chat-adapter-imessage";
const bot = new Chat({
userName: "mybot",
adapters: {
imessage: createiMessageAdapter(),
},
});
bot.onNewMention(async (thread, message) => {
await message.openModal(
Modal({
callbackId: "fav-color",
title: "What is your favorite color?",
children: [
Select({
id: "color",
label: "Pick a color",
options: [
SelectOption({ label: "Red", value: "red" }),
SelectOption({ label: "Blue", value: "blue" }),
SelectOption({ label: "Green", value: "green" }),
],
}),
],
})
);
});
bot.onModalSubmit("fav-color", async (event) => {
const color = event.values.color; // "red", "blue", or "green"
});Not supported: Select.placeholder/label, TextInput, RadioSelect, Modal.submitLabel/closeLabel, more than one Select, and poll vote deselection. Polls in the same chat must have distinct titles (votes are matched back to the modal by title).
iMessage uses tapbacks instead of emoji reactions. Outbound reactions map standard emoji names to iMessage tapbacks:
| Emoji name | Tapback |
|---|---|
love / heart |
Love |
like / thumbs_up |
Like |
dislike / thumbs_down |
Dislike |
laugh |
Laugh |
emphasize / exclamation |
Emphasize |
question |
Question |
iMessage expressive-send effects animate a message when it arrives. The adapter exposes them through sendEffect(threadId, message, effect) — an adapter-specific extra (there is no first-class Chat SDK slot for effects). It sends the text with the effect attached and returns the sent message.
import { createiMessageAdapter, iMessageEffect } from "@photon-ai/chat-adapter-imessage";
const adapter = createiMessageAdapter();
bot.onNewMention(async (thread) => {
// Friendly name…
await adapter.sendEffect(thread.id, "🎉 Task complete!", "confetti");
// …or the typed constant:
await adapter.sendEffect(thread.id, "🎉 Task complete!", iMessageEffect.confetti);
});The effect argument accepts a friendly name or a value from the re-exported iMessageEffect map. Full-screen effects: confetti, fireworks, balloons, heart, lasers, celebration, sparkles, spotlight, echo. Bubble effects: slam, loud, gentle, invisible (invisible ink). Effects attach to text only, so sendEffect requires non-empty text content; an unknown effect throws a ValidationError.
Mini-app cards are native MSMessageExtension balloons — a rich card with a tap-through URL, the closest iMessage gets to a Slack-style rich card rather than a bare link. The adapter exposes them through sendMiniApp(threadId, card) — an adapter-specific extra (there is no first-class Chat SDK slot for cards).
sendMiniApp takes either a bare URL or a fully-specified card.
The lightweight form: pass a URL string and iMessage renders it as a mini-app — no extension identifiers required. You can also pass a Promise<string> or a thunk (() => string | Promise<string>), so the link can be minted at send time (e.g. a signed URL).
import { createiMessageAdapter } from "@photon-ai/chat-adapter-imessage";
const adapter = createiMessageAdapter();
bot.onNewMention(async (thread) => {
await adapter.sendMiniApp(thread.id, "https://example.com/menu");
// …or compute the URL lazily at send time:
await adapter.sendMiniApp(thread.id, async () => mintSignedLink(thread.id));
});Pass an object to control the bubble's image, captions, and the exact iMessage extension that opens on tap.
await adapter.sendMiniApp(thread.id, {
appName: "Poll Kit",
teamId: "TEAM123",
extensionBundleId: "com.example.pollkit.MessagesExtension",
url: "https://example.com/poll/42",
appStoreId: 1_234_567, // optional — for recipients without the extension
layout: {
caption: "Pizza night?",
subcaption: "Tap to vote",
imageTitle: "Friday",
image: pngBytes, // Uint8Array | Buffer | ArrayBuffer | Blob | FileUpload
summary: "Vote on Friday's dinner",
},
});appName, teamId, and extensionBundleId identify the iMessage extension that opens (receiving url) when the recipient taps the card; the server builds the matching MSMessageExtensionBalloonPlugin id from teamId + extensionBundleId. Every layout field is optional. The url accepts a string or URL and is validated; a missing required field or an invalid URL throws a ValidationError.
iMessage lets a conversation carry its own wallpaper — a touch with no analog on the plain-text competitors. The adapter exposes it through setBackground(threadId, input, options?) — an adapter-specific extra (there is no first-class Chat SDK slot for it). It is fire-and-forget: iMessage acknowledges the control signal without returning a message, so the call resolves to void.
import { readFile } from "node:fs/promises";
// From image bytes (Uint8Array | Buffer | ArrayBuffer | Blob | FileUpload).
await adapter.setBackground(thread.id, await readFile("./wallpaper.jpg"), {
mimeType: "image/jpeg",
});
// From an http(s) URL, fetched at send time.
await adapter.setBackground(thread.id, "https://example.com/wallpaper.jpg");
// Remove the current background.
await adapter.setBackground(thread.id, "clear");Pass the literal "clear" to remove the current background, in-memory image bytes, or an http(s) URL (a URL or a string) that spectrum-ts fetches at send time. Image bytes need an image/* MIME type — supply options.mimeType (e.g. "image/jpeg") or an options.name with an image extension when it can't be inferred. Local file-path strings are rejected — read the file into bytes and pass those instead. A non-image MIME type, an unresolvable MIME type, or a non-http(s) string throws a ValidationError.
- Cold sends need a resolvable line. The adapter rebuilds a thread — DM or group — from its chat GUID via spectrum-ts's
space.get, so it can send, react, edit, and show typing even into a thread it hasn't seen this session, including a webhook delivery. With multiple iMessage lines configured, spectrum-ts cannot infer which line an unseen chat belongs to, so cold sends there throwNotImplementedError— respond within a received message's thread instead. - No message history.
fetchMessagesis not supported — spectrum-ts exposes no paginated history API. Single messages resolve viafetchMessage(from the session cache or spectrum-ts's by-id lookup). - No thread/chat info.
fetchThreadis not supported. - Session-scoped delete & reaction removal.
deleteMessageunsends a message resolved from this session (subject to iMessage's ~2-minute unsend window);removeReactionretracts a tapback only if it was added viaaddReactionearlier in this session — spectrum-ts exposes no by-target reaction lookup. - Formatting. Markdown-typed content (
{ markdown }or{ ast }) renders as native iMessage styled text — bold, italics, links, and lists — via spectrum-ts'smarkdown()builder. Plain strings and{ raw }are sent as-is (never reinterpreted as Markdown). Inbound messages always surface as plain text. - Cards. iMessage has no structured card layouts.
This version re-platforms the adapter onto spectrum-ts. If you are upgrading:
- Local (on-device) mode removed —
local: true, andIMESSAGE_LOCALset to any value other than"false", now throw. Use Spectrum Cloud or a self-hosted gRPC endpoint;local: falseandIMESSAGE_LOCAL=falseare still accepted as no-ops. - Dependency — replaces
@photon-ai/imessage-kit+@photon-ai/advanced-imessage-kitwith@spectrum-ts/core+@spectrum-ts/imessage IMESSAGE_SERVER_URLis now a gRPChost:port(self-host), not anhttps:/// Socket.IO URL.- New cloud path — set
IMESSAGE_PROJECT_ID+IMESSAGE_PROJECT_SECRETfor Spectrum Cloud. - Unsupported capabilities (throw
NotImplementedError):fetchMessagesandfetchThread— spectrum-ts exposes no paginated history or chat-info API. ColdpostMessageworks for DMs and groups alike (rebuilt from the chat GUID — see Limitations). - Newly supported on spectrum-ts:
deleteMessage(unsend),removeReaction(retract a session-added tapback),openDM(cold-start a DM from a handle),fetchMessage(single message by id), andmarkRead— see Features. adapter.sdk→adapter.app— the adapter now exposes the underlyingSpectrumInstanceasadapter.app(null untilinitialize()).
- Provide cloud credentials (
IMESSAGE_PROJECT_ID+IMESSAGE_PROJECT_SECRET), or a self-hostIMESSAGE_SERVER_URL+IMESSAGE_API_KEY.
- The adapter no longer runs against the on-device Messages database. Remove
local: true(and anyIMESSAGE_LOCALvalue other than"false", which is still accepted as a no-op) and provide cloud or self-host credentials instead.
- Confirm
IMESSAGE_SERVER_URLis a gRPChost:port(e.g.imessage.example.com:443), not anhttps://URL. - Verify the token matches your server's credentials.
- These are not supported by spectrum-ts. See Limitations.
- These are session-scoped.
deleteMessageandmarkReadneed the target message to have been seen this session (and delete is bound by iMessage's ~2-minute unsend window);removeReactionneeds the tapback to have been added viaaddReactionthis session. See Limitations.
MIT