mcdonalds-coupons

Use when user wants to check McDonald's promotions, claim coupons, or save money on McDonald's orders. Triggers on keywords like coupons, deals, McDonald's, McD, promotions, claim.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "mcdonalds-coupons" with this command: npx skills add ennann/mcd-skill/ennann-mcd-skill-mcdonalds-coupons

McDonald's Coupon Assistant

A skill that connects to McDonald's China MCP Server to help users discover promotions, claim coupons, and manage their coupon wallet.

Overview

This skill uses McDonald's official MCP (Model Context Protocol) service to:

  • Query available coupons (麦麦省)
  • One-click claim all coupons
  • Check campaign calendar
  • View user's coupon wallet

Token Management

Check if Token Exists

First, check if user has configured a token:

python scripts/token-manager.py list

No Token? Guide User to Get One

📝 首次使用需要 MCP Token

获取步骤:
1. 访问 https://open.mcd.cn/mcp
2. 点击右上角「登录」
3. 使用手机号验证登录
4. 点击「控制台」→「激活」
5. 复制生成的 Token

添加 Token:
python scripts/token-manager.py add <名称> <token>

示例:
python scripts/token-manager.py add personal 1kxNLFYT...

Multi-Token Management

Users can manage multiple tokens with custom nicknames:

# Add tokens - nickname can be anything user wants
python scripts/token-manager.py add 我自己 <token1>
python scripts/token-manager.py add 老妈 <token2>
python scripts/token-manager.py add 女朋友 <token3>

# List all tokens
python scripts/token-manager.py list
# Output:
# 🎫 已保存的 Token:
# ----------------------------------------
#   我自己: 1kxNLFYT...LuqJ ← 当前
#   老妈: 2abCDEFG...XyZ
#   女朋友: 3mnOPQRS...123
# ----------------------------------------

# Switch active token
python scripts/token-manager.py switch 老妈

# Remove a token
python scripts/token-manager.py remove 女朋友

Storage: ~/.mcd-tokens.json (auto-created, permissions 600)

Token is cached persistently - user only needs to add once, then it's always available.

Quick Reference

ActionMCP ToolDescription
List available couponsavailable-couponsShows claimable 麦麦省 coupons
Claim all couponsauto-bind-couponsOne-click claim everything
View my couponsmy-couponsUser's claimed coupon wallet
Check promotionscampaign-calenderCurrent and upcoming campaigns
Get current timenow-time-infoServer time for validity check

Implementation

Using Helper Script (Recommended)

# Uses token from token manager automatically
python scripts/mcd-mcp.py available-coupons

# Or specify token directly
python scripts/mcd-mcp.py available-coupons <token>

Direct HTTP Call

curl -X POST https://mcp.mcd.cn/mcp-servers/mcd-mcp \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $TOKEN" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"available-coupons"}}'

Response Parsing

{
  "result": {
    "content": [{"type": "text", "text": "...coupon data..."}]
  }
}

Extract text: result.content[0].text

Example Workflows

User: "有什么麦当劳优惠?"

  1. Check token exists → if not, guide user to add
  2. Call available-coupons
  3. Present coupons with prices
  4. Offer to claim all

User: "帮我领券" / "一键领取"

  1. Call auto-bind-coupons
  2. Report success count
  3. Remind expiry dates

User: "切换到我妈的账号领券"

  1. Run python scripts/token-manager.py switch 老妈
  2. Then call auto-bind-coupons
  3. Confirm: "已用「老妈」的账号领取了 X 张券"

User: "帮我把女朋友的麦当劳加进来"

  1. Guide to get token from https://open.mcd.cn/mcp
  2. Ask user for nickname: "你想给这个账号起什么名字?"
  3. Run python scripts/token-manager.py add <用户起的名字> <token>
  4. Confirm addition

Response Style

When presenting coupon info:

  • Use emojis for food (🍔🍟🍗)
  • Highlight prices and savings
  • Group by category
  • Note expiration dates
  • Show which account is active (if multiple)

Common Issues

IssueSolution
401 UnauthorizedToken invalid/expired, get new one
429 Too Many RequestsRate limit (600/min), wait and retry
No token configuredGuide user through token-manager.py add
Wrong accountUse token-manager.py switch <name>

Rate Limits

  • 600 requests per minute per token
  • Each token is independent (can use multiple accounts in parallel)

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

apaas-object-skill

No summary provided by upstream source.

Repository SourceNeeds Review
General

ll-feishu-audio

飞书语音交互技能。支持语音消息自动识别、AI 处理、语音回复全流程。需要配置 FEISHU_APP_ID 和 FEISHU_APP_SECRET 环境变量。使用 faster-whisper 进行语音识别,Edge TTS 进行语音合成,自动转换 OPUS 格式并通过飞书发送。适用于飞书平台的语音对话场景。

Archived SourceRecently Updated
General

test_skill

import json import tkinter as tk from tkinter import messagebox, simpledialog

Archived SourceRecently Updated
General

51mee-resume-profile

简历画像。触发场景:用户要求生成候选人画像;用户想了解候选人的多维度标签和能力评估。

Archived SourceRecently Updated