# foxyio MCP server

Read Foxy transactions, subscriptions, customers, carts and coupons; update customers and subs.

## Links
- Registry page: https://www.getdrio.com/mcp/io-usefulapi-foxyio
- Repository: https://github.com/m190/usefulapi-mcp

## Install
- Endpoint: https://foxyio.usefulapi.io/mcp
- Auth: Not captured

## Setup notes
- Remote endpoint: https://foxyio.usefulapi.io/mcp

## Tools
- foxy_get_api_home (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 /. Endpoint: https://foxyio.usefulapi.io/mcp
- foxy_get_default_store (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. Endpoint: https://foxyio.usefulapi.io/mcp
- foxy_get_store (Get store) - Get a single store resource by id, including its settings and _links to sub-collections. Foxy hAPI: GET /stores/{store_id}. Endpoint: https://foxyio.usefulapi.io/mcp
- foxy_list_transactions (List transactions) - List a store's transactions (orders), newest first. Returns a HAL collection embedding fx:transactions. Foxy hAPI: GET /stores/{store_id}/transactions. Endpoint: https://foxyio.usefulapi.io/mcp
- foxy_get_transaction (Get transaction) - Get a single transaction by id, optionally zooming related resources (items, customer, payments, applied_taxes…). Foxy hAPI: GET /transactions/{id}. Endpoint: https://foxyio.usefulapi.io/mcp
- foxy_list_subscriptions (List subscriptions) - List a store's subscriptions (recurring orders). Returns a HAL collection embedding fx:subscriptions. Foxy hAPI: GET /stores/{store_id}/subscriptions. Endpoint: https://foxyio.usefulapi.io/mcp
- foxy_get_subscription (Get subscription) - Get a single subscription by id, optionally zooming related resources. Foxy hAPI: GET /subscriptions/{id}. Endpoint: https://foxyio.usefulapi.io/mcp
- foxy_list_customers (List customers) - List a store's customers. Returns a HAL collection embedding fx:customers. Foxy hAPI: GET /stores/{store_id}/customers. Endpoint: https://foxyio.usefulapi.io/mcp
- foxy_get_customer (Get customer) - Get a single customer by id, optionally zooming related resources (default_billing_address, subscriptions…). Foxy hAPI: GET /customers/{id}. Endpoint: https://foxyio.usefulapi.io/mcp
- foxy_list_carts (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. Endpoint: https://foxyio.usefulapi.io/mcp
- foxy_list_coupons (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. Endpoint: https://foxyio.usefulapi.io/mcp
- foxy_list_items (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. Endpoint: https://foxyio.usefulapi.io/mcp
- foxy_update_customer (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. Endpoint: https://foxyio.usefulapi.io/mcp
- foxy_update_subscription (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. Endpoint: https://foxyio.usefulapi.io/mcp

## Resources
Not captured

## Prompts
Not captured

## Metadata
- Owner: io.usefulapi
- Version: 1.0.0
- Runtime: Streamable Http
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: Jul 19, 2026
- Source: https://registry.modelcontextprotocol.io
