Foxy.io MCP server. Read Foxy transactions, subscriptions, customers, carts and coupons; update customers and subs.
Add to your MCP config, then reload & authorize:
{
"mcpServers": {
"foxyio": {
"url": "https://foxyio.usefulapi.io/mcp"
}
}
}| Tool | Type | What it does |
|---|---|---|
foxy_get_api_home | read | Get API home Get the Foxy hAPI home document — its _links / rels (including fx:store for the authenticated default store). Useful for HAL discovery. Foxy hAPI: GET /. |
foxy_get_default_store | read | Get default store Resolve and return the authenticated user's default store (and its id) by fetching the API home and following the fx:store link. Use this to discover the store_id the list tools accept. Foxy hAPI: GET / then GET fx:store. |
foxy_get_store | read | Get store Get a single store resource by id, including its settings and _links to sub-collections. Foxy hAPI: GET /stores/{store_id}. |
foxy_list_transactions | read | List transactions List a store's transactions (orders), newest first. Returns a HAL collection embedding fx:transactions. Foxy hAPI: GET /stores/{store_id}/transactions. |
foxy_get_transaction | read | Get transaction Get a single transaction by id, optionally zooming related resources (items, customer, payments, applied_taxes…). Foxy hAPI: GET /transactions/{id}. |
foxy_list_subscriptions | read | List subscriptions List a store's subscriptions (recurring orders). Returns a HAL collection embedding fx:subscriptions. Foxy hAPI: GET /stores/{store_id}/subscriptions. |
foxy_get_subscription | read | Get subscription Get a single subscription by id, optionally zooming related resources. Foxy hAPI: GET /subscriptions/{id}. |
foxy_list_customers | read | List customers List a store's customers. Returns a HAL collection embedding fx:customers. Foxy hAPI: GET /stores/{store_id}/customers. |
foxy_get_customer | read | Get customer Get a single customer by id, optionally zooming related resources (default_billing_address, subscriptions…). Foxy hAPI: GET /customers/{id}. |
foxy_list_carts | read | List carts List a store's carts (in-progress / abandoned checkouts). Returns a HAL collection embedding fx:carts. Foxy hAPI: GET /stores/{store_id}/carts. |
foxy_list_coupons | read | List coupons List a store's coupons (discount codes and their rules). Returns a HAL collection embedding fx:coupons. Foxy hAPI: GET /stores/{store_id}/coupons. |
foxy_list_items | read | List transaction items List the line items of a transaction (the products purchased). Returns a HAL collection embedding fx:items. Foxy hAPI: GET /transactions/{transaction_id}/items. |
foxy_update_customer | write | Update customer UPDATES a customer's profile fields (first_name, last_name, email). This MODIFIES live store data. Foxy hAPI: PATCH /customers/{id}. Provide only the fields you want to change. |
foxy_update_subscription | write | Update subscription UPDATES a subscription — reschedule its next run (next_transaction_date), change its frequency, or activate/pause it (is_active). This MODIFIES live store data and affects future billing. Foxy hAPI: PATCH /subscriptions/{id}. Provide only the fields you want to change. |
foxy_usage_status | Usage status (free-tier meter) Report the caller's current free-tier usage this month: calls used, monthly limit, remaining, and whether the cap is reached. Read-only; does not count against the meter. | |
foxy_upgrade | Upgrade to Pro (unlimited) Subscribe to the Pro plan for UNLIMITED Foxy.io tool calls (the free tier caps monthly usage). Choose monthly ($9/month) or yearly ($90/year — 2 months free) billing. Returns a Stripe Checkout link to open in your browser; after payment your account upgrades automatically. Read-only; does not count against the meter. |
| Plan | Price | Limit |
|---|---|---|
| Free | $0 | 100 tool calls / month |
| Proper user | $9/mo · $90/yr | Unlimited |
This is a Model Context Protocol endpoint — meant to be connected from an AI client, not opened in a browser. An invalid_token response at the URL is the auth gate working as designed; clients authenticate automatically.