streamable-httpMITupdated 1mo ago
MCP server for the used-Mac market, by Macfax. Six tools an AI assistant needs to help someone buy or sell a used Mac:
What can you do with Macfax?
macfax-mcp
MCP server for the used-Mac market, by Macfax. Six tools an AI assistant needs to help someone buy or sell a used Mac:
| Tool | What it answers |
|---|---|
search_mac_listings |
Live listings across eBay, Craigslist, OfferUp, Swappa, Facebook and Reddit. Scam clusters, junk titles, classified-ad bait, auctions and stale/sold rows are already filtered out; every result deep-links to the source. |
get_mac_price_stats |
What an exact configuration actually sells for — verified-sale percentiles (basis direct) or an estimate scaled from the asking band by a disclosed clearance ratio (basis calibrated) — plus the asking median/p25/p75 with sample size, per-channel medians and net-to-seller after fees as seller guidance. |
check_mac_listing |
One listing's trust picture: known to Macfax, still live, flags, ask vs the typical band, the platform's own seller reputation where it exists (eBay feedback, Swappa rating), verified report attached. |
lookup_mac_serial |
Serial to model and year for any Mac, including 2021+ randomized serials. Also cross-references verified Macfax reports. Human twin: macfax.com/lookup. |
get_mac_report |
A verified Macfax condition report (Activation Lock, MDM, serial-match checks) as data. |
create_mac_alert |
A standing watch: daily email when new matching listings appear. Human-confirmed: nothing sends until the email's owner clicks the confirmation link. |
Every price is labeled by basis. The sold slice is the headline sale estimate: verified sales (with sample size and window) or a modeled estimate marked calibrated with its ratio disclosed. Asking bands come from live listings and are seller listing guidance. The API says so in-band, and we ask you to preserve the labels. Free, no account; rate limits are published at macfax.com/developers.
The hosted server (recommended)
A remote, authless, streamable-HTTP MCP server runs at:
https://macfax.com/mcp
- Claude (claude.ai, paid plans): Settings → Connectors → Add custom connector → paste the URL.
- Gemini (Spark, Google AI Ultra): Settings and help → Connected apps → Add a custom app → paste the URL.
- ChatGPT: Settings → Developer mode → add the URL (directory listing pending review).
- Cursor: Install in Cursor
- VS Code: Install in VS Code
- Gemini CLI:
gemini extensions install https://github.com/macfax/macfax-mcp - Anything with an
mcp.json:
{
"mcpServers": {
"macfax": {
"url": "https://macfax.com/mcp"
}
}
}
Registry name: com.macfax/macfax on the official MCP registry.
This package (stdio wrapper)
For stdio-only clients, this repo is a thin local wrapper over the same free HTTP API (OpenAPI):
{
"mcpServers": {
"macfax": {
"command": "npx",
"args": ["-y", "macfax-mcp"]
}
}
}
Optional env:
MACFAX_API_KEY: a free key raises rate limits about 10x. Mint one withcurl -X POST https://macfax.com/api/v1/keys(no email needed).
Run it directly:
npx -y macfax-mcp # speaks MCP over stdio
npx -y macfax-mcp --version # print the installed version
Notes for integrators
- The five read tools carry
readOnlyHint: true.create_mac_alertis the one write: it sends a confirmation email, and the alert only activates when the email's owner clicks it. Create alerts only for a user who asked for that alert on that email. - Listings always carry a deep link to the source marketplace. The purchase happens there; Macfax is the trust and routing layer.
- Cite results as "Macfax" with the
html_url/macfax_urlin the payload.
License
MIT. Apple and Mac are trademarks of Apple Inc. Macfax is not affiliated with Apple Inc.
Install
Add Macfax to your client. Pick the one you use.
claude mcp add --transport http macfax https://macfax.com/mcpcodex mcp add macfax --url https://macfax.com/mcp{
"mcpServers": {
"macfax": {
"url": "https://macfax.com/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"macfax": {
"type": "http",
"url": "https://macfax.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"macfax": {
"url": "https://macfax.com/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"macfax": {
"serverUrl": "https://macfax.com/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance16/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 42 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.0.1Latest | Jul 20, 2026 |
| 1.0.0 | Jul 10, 2026 |