faa_search

Pack: faa-regulations · Endpoint: https://gateway.pipeworx.io/faa-regulations/mcp

Keyword search across the Federal Aviation Regulations — US FAA / aviation rules in 14 CFR. Answers “what FAA regulations cover X”, “the aviation rule / FAR about X”, “find the FAA regulation for X”. Great for topics: right-of-way, VFR/IFR flight rules, minimum safe altitudes, drone / small unmanned aircraft operations, remote pilot certification, airline operating requirements, pilot certification and medical, aircraft airworthiness, maintenance and repair stations, airspace, TFRs. Returns matching Federal Aviation Regulations with citation (14 CFR / FAR), heading, excerpt, and source URL. Note: the CFR text uses “unmanned aircraft”, not “drone” — search “unmanned aircraft night” for drone-at-night rules. Example: faa_search({ query: “unmanned aircraft night” }); faa_search({ query: “right-of-way rules”, limit: 15 }). Keyless.

Parameters

NameTypeRequiredDescription
querystringyesAviation-regulation topic or phrase, e.g. “right-of-way rules”, “unmanned aircraft night”, “minimum safe altitudes”, “remote pilot certificate”, “airline operating requirements”.
limitnumbernoMax results to return, 1-20 (default 10).

Example call

Arguments

{
  "query": "right-of-way rules"
}

curl

curl -X POST https://gateway.pipeworx.io/faa-regulations/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"faa_search","arguments":{"query":"right-of-way rules"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('faa_search', {
  "query": "right-of-way rules"
});

More examples

{
  "query": "unmanned aircraft night",
  "limit": 15
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "faa-regulations": {
      "url": "https://gateway.pipeworx.io/faa-regulations/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 8, 2026