apple-event-mcp

apple-event-mcp

MCP server for Apple event liveblog updates from Engadget, MacRumors, iClarified, and Macworld, enabling AI agents to search, summarize, and monitor posts with optional webhook notifications.

Category
Visit Server

README

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 images
  • MacRumors: static live coverage, timestamped posts, keynote images
  • iClarified: dense transcript-style keynote feed
  • Macworld: commentary-style liveblog entries

Install

npm install
npm run build

MCP

Run the stdio MCP server:

npm run dev:mcp

Built command:

npm run build
node dist/mcp/server.js

Example MCP client config:

{
  "mcpServers": {
    "apple-event": {
      "command": "node",
      "args": ["/absolute/path/to/apple-event-mcp/dist/mcp/server.js"]
    }
  }
}

Tools:

  • list_events
  • list_liveblog_sources
  • get_liveblog_posts
  • search_liveblog_posts
  • get_event_summary
  • get_noteworthy_updates

Resources:

  • apple-event://wwdc2026/live
  • apple-event://wwdc2026/summary

Webhook Worker

Copy and edit the config:

cp config.example.json config.json

Run once:

npm run dev:worker -- --config config.json --once

Run continuously:

npm run dev:worker -- --config config.json

Replay 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 --once

Run the next cycle:

APPLE_EVENT_INTERESTS="Siri,Xcode" \
APPLE_EVENT_STORE_PATH=/tmp/apple-event-seen.json \
npm run dev:worker -- --replay --once

Useful replay settings:

  • replay.mode: batch or timed
  • replay.fixturePath: JSON array of LiveblogPost objects
  • replay.batchSize: number of additional fixture posts revealed per poll
  • replay.statePath: JSON file tracking the current replay cycle
  • replay.timeScale: timed replay multiplier, for example 120 means 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 build

Start 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 --once

Run 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 --once

Webhook requests are JSON POSTs. If a target has secret, requests include:

x-apple-event-signature: sha256=<hmac>

Environment

  • APPLE_EVENT_INTERESTS: comma-separated interests
  • APPLE_EVENT_POLL_SECONDS: polling interval override
  • APPLE_EVENT_STORE_PATH: JSON dedupe store path
  • APPLE_EVENT_REPLAY_FIXTURE: replay fixture override
  • APPLE_EVENT_REPLAY_MODE: batch or timed
  • APPLE_EVENT_REPLAY_BATCH_SIZE: replay batch size override
  • APPLE_EVENT_REPLAY_STATE_PATH: replay state path override
  • APPLE_EVENT_REPLAY_TIME_SCALE: timed replay speed multiplier
  • APPLE_EVENT_REPLAY_START_AT: fixed simulated start timestamp
  • APPLE_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.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured