Tenmomo
Cashback catalogue of 2,700+ US retailers: store search, rates, deals, tracked activation.
Should I use this
Quality & Safety
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"tenmomo": {
"url": "https://tenmomo.com/mcp"
}
}
}Remote endpoints
https://tenmomo.com/mcpstreamable-httpWhat it can do
Tool inventory
Tools (7)
🟢search_stores(query, limit)
Search for cashback-eligible stores by name or keyword. Returns store name, cashback rate, and category.
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Store name or keyword to search for"
},
"limit": {
"default": 20,
"description": "Max results (default 20, max 50)",
"type": "number"
}
},
"required": [
"query"
],
"$schema": "http://json-schema.org/draft-07/schema#"
}🟢get_store_details(store_id)
Get full details for a specific store including all cashback tiers, active coupons, and categories.
Input Schema
{
"type": "object",
"properties": {
"store_id": {
"type": "number",
"description": "Store ID"
}
},
"required": [
"store_id"
],
"$schema": "http://json-schema.org/draft-07/schema#"
}🟢get_deals(store_id, query, limit)
Find active coupon codes and deals. Optionally filter by store ID or search by keyword.
Input Schema
{
"type": "object",
"properties": {
"store_id": {
"description": "Filter deals for a specific store",
"type": "number"
},
"query": {
"description": "Search keyword for deals",
"type": "string"
},
"limit": {
"default": 20,
"description": "Max results (default 20, max 50)",
"type": "number"
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}🟢list_categories
List all shopping categories with store counts.
Input Schema
{
"type": "object",
"properties": {},
"$schema": "http://json-schema.org/draft-07/schema#"
}🟢get_stores_by_category(category_id, limit)
Get all cashback stores in a specific category.
Input Schema
{
"type": "object",
"properties": {
"category_id": {
"type": "number",
"description": "Category ID (use list_categories to find IDs)"
},
"limit": {
"default": 30,
"description": "Max results (default 30, max 100)",
"type": "number"
}
},
"required": [
"category_id"
],
"$schema": "http://json-schema.org/draft-07/schema#"
}🟢get_activation_url(store_id)
Get the cashback activation URL for a store. Users must click this link before shopping to earn cashback.
Input Schema
{
"type": "object",
"properties": {
"store_id": {
"type": "number",
"description": "Store ID"
}
},
"required": [
"store_id"
],
"$schema": "http://json-schema.org/draft-07/schema#"
}🟡activate_cashback(store_id, api_key)
Generate a personalized cashback activation link for a user. Requires the user's Tenmomo API key (sk-tm-...). The returned URL must be opened in a browser to set tracking cookies before shopping.
Input Schema
{
"type": "object",
"properties": {
"store_id": {
"type": "number",
"description": "Store ID to activate cashback for"
},
"api_key": {
"type": "string",
"description": "User's Tenmomo API key (sk-tm-...)"
}
},
"required": [
"store_id",
"api_key"
],
"$schema": "http://json-schema.org/draft-07/schema#"
}Community
Evidence