Give your AI agents instant access to MCC code lookups, merchant searches, and Singapore credit card recommendations.
OpenClaw is an open-source framework that lets AI agents interact with external services through structured skills. A skill is a small package that defines commands an agent can run — like looking up MCC codes on CheckMCC.
Check a store's MCC code by its website domain (e.g. fairprice.com.sg)
Fuzzy search for stores by name — returns MCC, category, and country
Get eligible Singapore credit cards for any MCC code with MPD rates and caps
Look up any MCC code by number or search by category keyword
Add the skill to your OpenClaw workspace:
openclaw skill install check-mccLook up a merchant by domain:
scripts/check-mcc.sh lookup fairprice.com.sgSee which Singapore credit cards earn bonuses for a given MCC:
scripts/check-mcc.sh cards 5812| Endpoint | Method | Description |
|---|---|---|
/api/store-by-domain?domain=X | GET | Look up a merchant by website domain. Returns MCC, category, country, and eligible credit cards. |
/api/store/search?q=X | GET | Search stores by name. Returns matching merchants with MCC and category. |
/api/mcc | GET | Get all ~300 MCC codes with descriptions. |
/api/mcc/codes | GET | Get MCC code list only (lighter response). |
Returns the full merchant profile including eligible credit cards:
curl "https://check-mcc.vercel.app/api/store-by-domain?domain=shopee.sg"{
"Store": "Shopee",
"MCC": "5399",
"Category": "Miscellaneous General Merchandise",
"Country": "Singapore",
"eligibleCards": [
{
"name": "UOB Preferred Platinum Visa",
"eligible": true,
"mpd": "4 MPD",
"spendCap": "Cap at $1,000 a month"
},
{
"name": "DBS Woman's Card",
"eligible": true,
"mpd": "4 MPD",
"spendCap": "Cap at $1,000 a month"
}
]
}Fuzzy search by store name:
curl "https://check-mcc.vercel.app/api/store/search?q=cold+storage"By code number or keyword:
# By number
scripts/check-mcc.sh mcc 5812
# Output: Eating Places and Restaurants
# By keyword
scripts/check-mcc.sh mcc restaurant| MCC Code | Category |
|---|---|
5812 | Eating Places and Restaurants |
5814 | Fast Food Restaurants |
5411 | Grocery Stores, Supermarkets |
5541 | Service Stations (Petrol) |
4121 | Taxicabs and Limousines |
5999 | Miscellaneous Retail |
6010 | Financial Institutions |
6051 | Non-financial Institutions |
Install the skill and give your AI agents instant access to MCC code data and Singapore credit card recommendations.