Skills pipeworx-airports

Airports MCP — wraps AirportGap API (free, no auth required)

install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/brucegutman/pipeworx-airports" ~/.claude/skills/openclaw-skills-pipeworx-airports && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/brucegutman/pipeworx-airports" ~/.openclaw/skills/openclaw-skills-pipeworx-airports && rm -rf "$T"
manifest: skills/brucegutman/pipeworx-airports/SKILL.md
source content

Pipeworx airports

Airports MCP — wraps AirportGap API (free, no auth required)

Free, no API key required. Part of the Pipeworx open MCP gateway.

When to Use

Use this skill when the user asks about airports data or needs to query airports information.

Available Tools

How to Call

The Pipeworx gateway speaks JSON-RPC 2.0 over HTTP POST.

List available tools

curl -s -X POST https://gateway.pipeworx.io/airports/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

Call a tool

curl -s -X POST https://gateway.pipeworx.io/airports/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"TOOL_NAME","arguments":{"param":"value"}}}'

MCP Client Config

{
  "mcpServers": {
    "pipeworx-airports": {
      "command": "npx",
      "args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/airports/mcp"]
    }
  }
}

Notes

  • No authentication required
  • Free for all users
  • Rate limited for anonymous users (sign up at pipeworx.io for higher limits)
  • Returns JSON-RPC 2.0 responses