Skip to content

MCP server

The DoesItARM MCP server exposes the same capabilities as the REST API as Model Context Protocol tools, so an AI assistant can ask “does X run on Apple Silicon?” by calling a tool, not scraping a page.

All four tools are queries. Nothing writes, buys, emails, or mutates state — so the server is safe to add to an autonomous agent without exposing it to a harmful action. That read-only shape is deliberate: it sidesteps the MCP prompt-injection risk class and makes the tools easy to trust and include.

Terminal window
claude mcp add doesitarm --transport http https://mcp.doesitarm.com

The three read tools work with no credential. The paid whats_changed_since tool needs an Authorization: Bearer dia_live_… header — see Authentication.

Each tool returns the same payload its REST mirror returns on 200 — there is no separate wrapper shape. Learn the Verdict object once and you know all four.

ToolReturnsREST mirrorTier
lookup_verdictone VerdictGET /verdicts/{identifier}Free
search_titles{ data: SearchResult[], pagination }GET /titlesFree
list_by_category{ data: Verdict[], pagination }GET /categories/{category}/verdictsFree
whats_changed_since{ data: ChangeRecord[], pagination }GET /changesPaid
Tool: lookup_verdict
Arguments: { "identifier": "slug:adobe-photoshop" }
→ Verdict { status: "native", confidence: "high", stale: false, … }