Developer API

iDevice MCP Server

Give your AI assistant real-time access to wearable tech roadmaps, sourced release claims, product timelines, and iDevice editorial coverage — via the Model Context Protocol.

Listed on the MCP Registry as io.github.idevicewearables/idevice-wearables

Connection

Endpointhttps://idevice.com/api/mcp
TransportStreamable HTTP (MCP 2025-03-26)
AuthX-API-Key header

All requests require an API key passed as the X-API-Key request header. Keys are available on the free tier with a monthly quota. See Request a key below.

Claude Desktop config

Add to ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "idevice-wearables": {
      "type": "streamable-http",
      "url": "https://idevice.com/api/mcp",
      "headers": {
        "X-API-Key": "YOUR_API_KEY"
      }
    }
  }
}

Cursor config

Add to .cursor/mcp.json in your project root, or to ~/.cursor/mcp.json globally.

{
  "mcp": {
    "servers": {
      "idevice-wearables": {
        "type": "streamable-http",
        "url": "https://idevice.com/api/mcp",
        "headers": {
          "X-API-Key": "YOUR_API_KEY"
        }
      }
    }
  }
}

Tools (7)

list_roadmaps

Returns all available product roadmap subjects — Apple Watch, AirPods, Vision Pro, Meta Ray-Bans, Samsung Galaxy Ring, and more.

get_roadmap

Full roadmap detail for one product: current model specs, upcoming release predictions, cycle position, and buy recommendation.

get_claims

Sourced release claims for a product — leaked specs, analyst predictions, supply chain reports. Each claim carries a source URL and confidence tier.

get_timeline

Historical and predicted event timeline for a product, ordered chronologically. Useful for understanding release cadence.

compare_products

Side-by-side comparison of two wearable products across specs, price, release timing, and buy recommendation.

get_glossary

Wearable tech glossary — definitions for industry terms used across iDevice coverage and roadmap pages.

search_articles

Full-text search across published iDevice articles. Returns titles, summaries, and links relevant to a query.

Products covered

Apple WatchAirPodsApple Vision ProApple GlassesMeta Ray-BansMeta QuestSamsung Galaxy RingSamsung Galaxy WatchSamsung Galaxy GlassesGoogle Pixel WatchGoogle Pixel BudsGoogle GlassesOura RingUltrahuman RingWhoop

Request a key

API keys are free for personal and indie use. Send a brief note about your project to:

[email protected]

Keys are provisioned manually. Include what you are building and your expected usage. Pro and enterprise tiers with higher quotas are available.

Discovery

A GET /api/mcp request returns server metadata and the tool list without authentication:

curl https://idevice.com/api/mcp

The MCP server is open source. View the repository. Protocol reference: modelcontextprotocol.io.