Skip the install. Get this working in under 2 minutes.
Start a free trial on cloud.anythingmcp.com, add the Playtomic in one click, then point your AI client (Claude, ChatGPT, Copilot or Cursor) at the generated MCP endpoint. No Docker, no git clone, zero engineering experience required.
Summary
通过 AnythingMCP 的 MCP 连接器把 Playtomic 加到 GitHub Copilot Chat / Visual Studio Code。一边编程一边用 Copilot 在 Playtomic 上查 padel 场地,搭建支持 padel 的开发工作流。
试试这样问
Playtomic 的示例提示
点击任意提示即可复制,然后粘贴到 Claude、ChatGPT、Cursor、Gemini、Copilot 或 OpenClaw 中,在该连接器上运行。
Claude 是 AI,可能会出错。请核对回答。
💡 不想本地安装?用 cloud.anythingmcp.com。 生成 MCP API key,把 Copilot 指向
https://cloud.anythingmcp.com/mcp,完成。
在 Playtomic 上用 GitHub Copilot 查找 padel 场地
VS Code 里的 GitHub Copilot Chat 支持 Model Context Protocol。AnythingMCP 把 Playtomic 暴露为 MCP 工具后,你可以在编辑器里直接用 Copilot 在 Playtomic 上查 padel 场地——做 padel 相关的副业项目、或者想在两次提交之间偷个周六的场子时很方便:
- "显示今晚 19 点后 20 公里内空闲的 padel 场。"
- "把我今年的 padel 比赛历史导出成可粘贴到测试 fixture 的 JSON。"
- "生成一个周五 17 点触发的 CRON 表达式,向 Playtomic 查周六上午的时段。"
Copilot 通过 MCP 调用 Playtomic,返回结构化结果可直接粘贴到代码或聊天里。
两个连接器,按需选择
| Playtomic Public | Playtomic (full) | |
|---|---|---|
| 设置 | 零 | 邮箱 + 密码 |
| 工具数 | 4(只读) | 13(只读) |
| 价格 | 通用价格 | 会员折扣已应用 |
| 适用场景 | 公共机器人、演示、嵌入式搜索 | 个人使用 |
前置条件
- 装有 GitHub Copilot Chat 扩展(支持 MCP)的 VS Code。
- Playtomic 账号(仅 full)。
- AnythingMCP 本地部署或 cloud.anythingmcp.com。
第 1 步——安装 Playtomic 适配器
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
打开 http://localhost:3000/connectors/store → 搜 Playtomic → 安装 Playtomic (Public)(无凭证)或 Playtomic(填 PLAYTOMIC_EMAIL + PLAYTOMIC_PASSWORD)。
在 Profile → MCP API Keys → New Key 生成 MCP API key。
第 2 步——在 VS Code 的 Copilot 中添加 MCP 服务器
新建或更新 workspace 里的 .vscode/mcp.json(或用户级 ~/.config/Code/User/mcp.json):
{
"servers": {
"playtomic": {
"type": "http",
"url": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
重载 VS Code 窗口。打开 Copilot Chat → 🔧 Tools 选择器 → 启用 Playtomic。
可用工具
Playtomic Public(4 个工具)
| 工具 | 作用 |
|---|---|
playtomic_search_tenants | 按坐标搜索 padel 俱乐部 |
playtomic_get_tenant | 单俱乐部详情 |
playtomic_get_availability | 可用时段 + 价格 |
playtomic_get_sport_configuration | 运动枚举(时长、场地类型) |
Playtomic full(13 个工具)
Discovery + 账户 + 开放比赛 + 推荐 + 锦标赛 + 联赛。完整表见 Claude 指南。
Code-with-padel 工作流
Copilot 让 Playtomic 对开发者真的有用:
- "我正在写一个找场地的 App。对 5 个城市调用
playtomic_search_tenants,给我写个 Postgres seed 文件。" - "为
playtomic_get_availability的返回写一个 TypeScript 类型——用我实际拿到的 JSON。" - "把过去 12 个月的
playtomic_get_my_stats画成 chartjs 配置。"
FAQ
没有 GitHub Copilot Pro 也能用吗? Copilot Chat 的 MCP 集成包含在 Pro 和 Business 中。个人版在较新的 VS Code 也有 MCP 支持。
MCP API key 放哪里——mcp.json 还是 .env?
都行。共享 workspace 建议在 mcp.json 用 ${env:ANYTHINGMCP_KEY} 插值,把 key 放 .env(gitignored)。
能本地跑 AnythingMCP 而不走 cloud.anythingmcp.com 吗?
可以——把 Copilot 指向 http://localhost:4000/mcp,用本地 API key。
为什么 playtomic_get_my_profile 失败?
你可能装了无鉴权的 public。需要个人数据工具就装 Playtomic (full)。
下一步
这份指南对你有帮助吗?