Connector guide2-minute read13 MCP toolsEN · DE · IT

在 Playtomic 上用 GitHub Copilot 查找可预订的板式网球场

通过 AnythingMCP 的 MCP 连接器把 Playtomic 加到 GitHub Copilot Chat / Visual Studio Code。一边编程一边用 Copilot 在 Playtomic 上查 padel 场地,搭建支持 padel 的开发工作流。

HCBy HelpCode teamUpdated 2 min read Open source on GitHub

No credit card · 7-day trial · Self-host alternative available

Playtomic

MCP connector

Playtomic

Full Playtomic access for padel, tennis, and futsal players. Search clubs and availability, find open matches to join, read your own profile, level, stats, history, and recommendations. 13 tools, email + password auth with automatic JWT refresh.

Tools

13

Region

INTL

Category

Sports

Authentication

Login Token (bcrypt + JWT)

Required env vars

PLAYTOMIC_EMAILPLAYTOMIC_PASSWORD
Install in one click on Cloud

7-day free trial · No credit card

  • 7-day free trial
    No credit card required
  • GDPR & SOC 2 ready
    EU data residency, audit logs
  • Open-source on GitHub
    Source-available BSL-1.1
  • Works with ChatGPT, Claude, Gemini
    Any MCP-compatible client

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.

Start free trial

Summary

通过 AnythingMCP 的 MCP 连接器把 Playtomic 加到 GitHub Copilot Chat / Visual Studio Code。一边编程一边用 Copilot 在 Playtomic 上查 padel 场地,搭建支持 padel 的开发工作流。

试试这样问

Playtomic 的示例提示

点击任意提示即可复制,然后粘贴到 Claude、ChatGPT、Cursor、Gemini、Copilot 或 OpenClaw 中,在该连接器上运行。

Playtomic · 通过 MCP 实时
分享
Opus 4.7

Claude 是 AI,可能会出错。请核对回答。

Playtomic

💡 不想本地安装?用 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 PublicPlaytomic (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)

下一步

这份指南对你有帮助吗?

Ready to ship

Your Playtomic agent is one click away.

Install the connector, paste the key, prompt GitHub Copilot. Free for 7 days, no credit card.

相关指南

connectors

在 Playtomic 上用 ChatGPT 查找可预订的板式网球场

通过 AnythingMCP 的 MCP 连接器把 Playtomic 接入 ChatGPT。在 Playtomic 上用 ChatGPT 查找空场、对比价格、找到与你水平匹配的开放比赛——无需离开聊天窗口。

connectors

在 Playtomic 上用 Claude AI 查找可预订的板式网球场

通过 AnythingMCP 将 Playtomic 连接到 Claude Desktop 或 Claude Code。让 Claude 在 Playtomic 上查找可用的板式网球场、对比俱乐部价格、找到与你水平匹配的开放比赛——全部用自然语言完成,无需再翻预订 App。

connectors

使用 Cursor 在 Playtomic 上搜索可用的 Padel 球场

通过 AnythingMCP 中的 MCP 连接器将 Playtomic 连接到 Cursor。搜索 padel 球场,比较价格,并在编辑器内构建 padel 相关的编码流程。

connectors

通过 Gemini 在 Playtomic 上搜索可用的 Padel 球场

通过 AnythingMCP 的 MCP 网关将 Playtomic 连接到 Gemini。使用 Gemini 在 Playtomic 上搜索 padel 球场,比较价格并找到适合你水平的开放比赛 — 无需离开 Gemini 的聊天界面。

connectors

在 Playtomic 上用 OpenClaw 查找可预订的板式网球场

通过 AnythingMCP 把 Playtomic 接到 OpenClaw。用 OpenClaw 和本地 LLM 客户端在 Playtomic 上查 padel 场地,自动化场地提醒,把 padel 工作流完全跑在自己的机器上。

connectors

用 AI 查找 padel 场地 — Playtomic + Claude、ChatGPT、Copilot、OpenClaw

别再翻 Playtomic App。让 Claude、ChatGPT、Copilot 或 OpenClaw 在 Playtomic 上查 padel 空场、对比价格、找到与你水平匹配的开放比赛。一个 MCP 连接器,四个客户端。