← 返回 Skills 市场
mfy-apl

Airport Pickups London

作者 mfy-apl · GitHub ↗ · v1.0.4 · MIT-0
cross-platform ✓ 安全检测通过
390
总下载
0
收藏
0
当前安装
4
版本数
在 OpenClaw 中安装
/install airport-pickups-london
功能描述
Book UK airport and cruise port transfers via Airport Pickups London. Get instant fixed-price quotes, validate flights, create bookings, amend, cancel, and t...
使用说明 (SKILL.md)

Airport Pickups London — Transfer Booking Skill

This skill connects your agent to Airport Pickups London's booking API via MCP, giving it full transfer management — quotes, bookings, amendments, cancellations, and live driver tracking.

Authentication Required

This skill requires an API key via the x-api-key header. No environment variables are needed.

Get a key instantly (free, no approval):

curl -X POST https://mcp.airport-pickups-london.com/a2a/register \
  -H "Content-Type: application/json" \
  -d '{"name": "Your Agent Name", "email": "[email protected]"}'

Setup

Add the APL MCP server to your config:

{
  "mcpServers": {
    "airport-pickups-london": {
      "url": "https://mcp.airport-pickups-london.com/mcp",
      "headers": {
        "x-api-key": "YOUR_API_KEY"
      }
    }
  }
}

Available Tools (8)

get_quote — Get Transfer Prices

Get prices for any UK transfer route. Returns all car types with prices, capacity, and luggage allowance.

Example prompts:

  • "How much is a taxi from Heathrow to central London?"
  • "Get me a quote from Gatwick to Brighton for 4 passengers"
  • "What's the price from Southampton cruise port to London?"

validate_flight — Flight Validation

Verify a flight number and get terminal, airline, arrival time, and meeting point.

Example prompts:

  • "Check flight BA2534 arriving on April 15th"
  • "What terminal does EK007 arrive at?"

book_transfer — Create Booking

Create a confirmed transfer booking. Returns booking reference, manage URL, meeting point.

Example prompts:

  • "Book a People Carrier from Heathrow to W1K 1LN for John Smith, flight BA2534, April 15th at 3pm"

lookup_booking — Check Booking Status

Look up booking details by reference number. Returns status, driver info, and manage URL.

Example prompts:

  • "What's the status of booking APL-CJ5KDJ?"

amend_booking — Modify Booking

Change passenger name, phone, email, flight number, date/time, or special requests.

Example prompts:

  • "Change the flight on APL-CJ5KDJ to BA2590"
  • "Update the passenger name to Jane Doe"

cancel_booking — Cancel Booking

Cancel a booking. Free cancellation 12+ hours before pickup.

Example prompts:

  • "Cancel booking APL-CJ5KDJ"

track_driver — Live Driver Tracking

Get the driver's live GPS position, vehicle details, photo, and ETA.

Example prompts:

  • "Where is my driver for APL-CJ5KDJ?"

get_service_info — FAQ & Policies

Get info about cancellation policy, payment methods, vehicles, child seats, pets, accessibility, meet and greet, cruise ports, corporate accounts.

Example prompts:

  • "What's the cancellation policy?"
  • "Do you provide child seats?"

Data & Privacy

This skill sends the following data to the APL booking API:

  • Pickup and dropoff locations
  • Passenger name, phone, email
  • Flight numbers

All data is transmitted over HTTPS (TLS 1.2+) and stored by Airport Pickups London for service delivery. GDPR compliant. The API key authenticates the agent, not the end user.

Pricing Negotiation (A2A Extension)

Agents can request a discount by including requestedDiscountPercent in the quote request. Maximum discount is 5%. Non-negotiable: peak surcharges, event pricing, child seats.

Pricing Info

  • All prices in GBP, per vehicle (not per person)
  • Fixed prices — no surge, no hidden charges
  • Includes meet & greet, waiting time, parking, tolls
  • Free cancellation 12+ hours before pickup

Vehicle Types

Car Type Passengers Suitcases From
Saloon Up to 3 3 ~£33
People Carrier Up to 5 5 ~£45
8 Seater Up to 8 8 ~£55
Executive Saloon Up to 3 3 ~£65
Executive MPV Up to 7 7 ~£85

Important Rules for Agents

  1. ALWAYS call get_quote before booking — never guess prices
  2. NEVER call book_transfer without user confirmation — always show the price and get a "yes" first
  3. Flight validation is optional and never blocks a booking
  4. For airport pickups, recommend clearance: domestic 15min, European 45min, international 60min after landing

Support

Ratings

TripAdvisor 4.7/5 | Trustpilot 4.9/5 | Reviews.io 4.9/5

安全使用建议
This skill appears coherent for booking transfers, but before installing: 1) Verify the MCP domain (mcp.airport-pickups-london.com) and HTTPS/TLS certificate and confirm the service is legitimate (owner is unknown in the registry). 2) Confirm APL's privacy/GDPR policy and how long they retain passenger/flight data; only provide PII with explicit user consent. 3) Prefer storing the API key in a restricted agent config or secrets store (and ensure it is scoped/rotatable); do not paste keys into shared logs. 4) Because the agent can operate autonomously, enforce a policy or guardrail that prevents auto-booking (require explicit user confirmation) unless you trust the agent's behavior. 5) Test with a non-production account or minimal bookings and verify cancellation/refund rules. 6) If you need higher assurance, contact APL support to confirm the MCP registration flow and key scope before provisioning keys to the agent.
功能分析
Type: OpenClaw Skill Name: airport-pickups-london Version: 1.0.4 The skill provides a standard MCP integration for Airport Pickups London, a legitimate UK-based transport service. It includes tools for quotes, flight validation, and booking management, with clear instructions for API key registration and data privacy. No malicious code, obfuscation, or prompt injection attempts were detected in SKILL.md or _meta.json.
能力标签
cryptocan-make-purchases
能力评估
Purpose & Capability
The skill's name/description match its runtime instructions: it instructs the agent to talk to an APL MCP API to get quotes, validate flights, create/amend/cancel bookings, and track drivers. Requiring an API key and sending passenger/flight data is expected for this purpose. Minor inconsistency: the registry metadata lists no required env vars, but SKILL.md explicitly requires provisioning an API key in the mcpServers config.
Instruction Scope
SKILL.md stays within the stated domain: it explains how to register for an API key, how to configure the MCP server, and enumerates the booking/quote/track endpoints and required booking data. It does not instruct the agent to read unrelated files or environment variables, nor to exfiltrate data outside the APL service.
Install Mechanism
No install spec or code is present (instruction-only), so nothing will be downloaded or written to disk by the skill itself. This keeps install risk low.
Credentials
The skill requires an API key to authenticate to the APL MCP server and will transmit personal data (names, phones, emails, flight numbers) to that third party — this is proportionate to booking transfers but is sensitive PII. The skill does not request unrelated credentials. Note that the API key is not declared as a required env var in the registry metadata; it must be provided via the agent's mcpServers config as described in SKILL.md.
Persistence & Privilege
The skill is not flagged always:true and does not request system-wide configuration changes. It can be invoked autonomously (platform default), which is expected for a booking tool; however, the SKILL.md relies on the agent following 'NEVER call book_transfer without user confirmation' — that is an instruction but not a technical enforcement.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install airport-pickups-london
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /airport-pickups-london 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.4
Expanded feature set for full transfer management: - Added new tools: look up, amend, cancel bookings, live driver tracking, and service info/FAQ, increasing available actions from 3 to 8. - Updated authentication/setup instructions for clarity; emphasized free, instant API key registration. - Revised cancellation policy: now free up to 12+ hours before pickup (was 24+). - Expanded privacy section describing transmitted data and GDPR compliance. - Improved documentation of tool capabilities, example prompts, and agent best practices. - Removed deprecated metadata file.
v1.0.3
- Added _meta.json file for improved skill metadata management. - Updated WhatsApp support contact from +44 7538 989360 in documentation. - No functional changes to core features or API integration.
v1.0.2
- Updated API key registration instructions: now shows a direct POST request example for instant key retrieval. - Clarified setup process by breaking it into explicit steps for easier onboarding. - No functional or API changes.
v1.0.0
- Initial release of Airport Pickups London booking skill. - Instantly get fixed-price quotes and create real bookings for all major UK airports and cruise ports. - Validate flight numbers to auto-detect terminal, airline, and arrival time. - Supports price negotiation (up to 5% discount) via A2A extension. - Full vehicle selection, transparent fixed pricing, and 24/7 support included.
元数据
Slug airport-pickups-london
版本 1.0.4
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 4
常见问题

Airport Pickups London 是什么?

Book UK airport and cruise port transfers via Airport Pickups London. Get instant fixed-price quotes, validate flights, create bookings, amend, cancel, and t... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 390 次。

如何安装 Airport Pickups London?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install airport-pickups-london」即可一键安装,无需额外配置。

Airport Pickups London 是免费的吗?

是的,Airport Pickups London 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Airport Pickups London 支持哪些平台?

Airport Pickups London 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Airport Pickups London?

由 mfy-apl(@mfy-apl)开发并维护,当前版本 v1.0.4。

💬 留言讨论