apple-event-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@apple-event-mcpsummarize the latest WWDC26 keynote announcements"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
apple-event-mcp
MCP server and webhook worker for Apple event liveblog updates.
It pulls WWDC26 coverage from public liveblog pages and exposes structured posts to AI agents. It can also poll continuously, match posts against user interests, and send signed webhooks.
Sources
Engadget: schema.org
LiveBlogPosting, structured posts, per-post imagesMacRumors: static live coverage, timestamped posts, keynote images
iClarified: dense transcript-style keynote feed
Macworld: commentary-style liveblog entries
Related MCP server: All-Search MCP Server
Install
npm install
npm run buildMCP
Run the stdio MCP server:
npm run dev:mcpBuilt command:
npm run build
node dist/mcp/server.jsExample MCP client config:
{
"mcpServers": {
"apple-event": {
"command": "node",
"args": ["/absolute/path/to/apple-event-mcp/dist/mcp/server.js"]
}
}
}Tools:
list_eventslist_liveblog_sourcesget_liveblog_postssearch_liveblog_postsget_event_summaryget_noteworthy_updates
Resources:
apple-event://wwdc2026/liveapple-event://wwdc2026/summary
Webhook Worker
Copy and edit the config:
cp config.example.json config.jsonRun once:
npm run dev:worker -- --config config.json --onceRun continuously:
npm run dev:worker -- --config config.jsonReplay Mode
Replay mode simulates a live event without network access. Batch mode reads fixture posts and reveals a few more posts each poll cycle.
Run the first cycle:
APPLE_EVENT_INTERESTS="Siri,Xcode" \
APPLE_EVENT_STORE_PATH=/tmp/apple-event-seen.json \
npm run dev:worker -- --replay --replay-reset --onceRun the next cycle:
APPLE_EVENT_INTERESTS="Siri,Xcode" \
APPLE_EVENT_STORE_PATH=/tmp/apple-event-seen.json \
npm run dev:worker -- --replay --onceUseful replay settings:
replay.mode:batchortimedreplay.fixturePath: JSON array ofLiveblogPostobjectsreplay.batchSize: number of additional fixture posts revealed per pollreplay.statePath: JSON file tracking the current replay cyclereplay.timeScale: timed replay multiplier, for example120means 1 real second equals 2 event minutes--replay-reset: reset the replay cycle counter
Replay still uses the normal seen-post store, so only newly revealed matching posts notify.
Timed replay from captured posts
For a more realistic no-live-event test, capture crawlable WWDC posts locally, then replay their original timestamps against the current clock. Captured publisher content is written under fixtures/local/, which is ignored by git.
npm run capture:replay -- --source all --limit 300 --out fixtures/local/wwdc26-live.replay.json
npm run buildStart the simulation:
APPLE_EVENT_INTERESTS="Siri,Xcode" \
APPLE_EVENT_STORE_PATH=/tmp/apple-event-seen.json \
APPLE_EVENT_REPLAY_STATE_PATH=/tmp/apple-event-replay.json \
APPLE_EVENT_REPLAY_FIXTURE=fixtures/local/wwdc26-live.replay.json \
APPLE_EVENT_REPLAY_TIME_SCALE=120 \
node dist/worker/poller.js --replay --replay-mode timed --replay-reset --onceRun again without --replay-reset to advance the simulated event:
APPLE_EVENT_INTERESTS="Siri,Xcode" \
APPLE_EVENT_STORE_PATH=/tmp/apple-event-seen.json \
APPLE_EVENT_REPLAY_STATE_PATH=/tmp/apple-event-replay.json \
APPLE_EVENT_REPLAY_FIXTURE=fixtures/local/wwdc26-live.replay.json \
APPLE_EVENT_REPLAY_TIME_SCALE=120 \
node dist/worker/poller.js --replay --replay-mode timed --onceWebhook requests are JSON POSTs. If a target has secret, requests include:
x-apple-event-signature: sha256=<hmac>Environment
APPLE_EVENT_INTERESTS: comma-separated interestsAPPLE_EVENT_POLL_SECONDS: polling interval overrideAPPLE_EVENT_STORE_PATH: JSON dedupe store pathAPPLE_EVENT_REPLAY_FIXTURE: replay fixture overrideAPPLE_EVENT_REPLAY_MODE:batchortimedAPPLE_EVENT_REPLAY_BATCH_SIZE: replay batch size overrideAPPLE_EVENT_REPLAY_STATE_PATH: replay state path overrideAPPLE_EVENT_REPLAY_TIME_SCALE: timed replay speed multiplierAPPLE_EVENT_REPLAY_START_AT: fixed simulated start timestampAPPLE_EVENT_REPLAY_ORIGINAL_START_AT: fixed source-event start timestamp
Notes
These sources are public webpages, not stable APIs. Adapters are intentionally small and covered by parser tests so they can be updated quickly when page markup changes.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/perryraskin/apple-event-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server