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.
io.github.idevicewearables/idevice-wearablesConnection
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_roadmapsReturns all available product roadmap subjects — Apple Watch, AirPods, Vision Pro, Meta Ray-Bans, Samsung Galaxy Ring, and more.
get_roadmapFull roadmap detail for one product: current model specs, upcoming release predictions, cycle position, and buy recommendation.
get_claimsSourced release claims for a product — leaked specs, analyst predictions, supply chain reports. Each claim carries a source URL and confidence tier.
get_timelineHistorical and predicted event timeline for a product, ordered chronologically. Useful for understanding release cadence.
compare_productsSide-by-side comparison of two wearable products across specs, price, release timing, and buy recommendation.
get_glossaryWearable tech glossary — definitions for industry terms used across iDevice coverage and roadmap pages.
search_articlesFull-text search across published iDevice articles. Returns titles, summaries, and links relevant to a query.
Products covered
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/mcpThe MCP server is open source. View the repository. Protocol reference: modelcontextprotocol.io.