← planefox.com

INDIVIDUAL MCP TOOL

get_dealer

Return one dealer organisation by its id, as listed by list_dealers, with the same org-level metrics.

planefox.comnone authenticationAvailability not checked

LIVE ENDPOINT

https://planefox.com/mcp

No auth detected

Connect to this endpoint to inspect the live schema for get_dealer and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

planefox.com

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.planefox]
url = "https://planefox.com/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "planefox": {
      "type": "http",
      "url": "https://planefox.com/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: planefox
Remote MCP URL: https://planefox.com/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "planefox": {
      "url": "https://planefox.com/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "planefox": {
      "type": "http",
      "url": "https://planefox.com/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "planefox",
  "transport": "streamable-http",
  "url": "https://planefox.com/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • whoami — Return the authenticated account's email and auth method.
  • search_listings — Search the PlaneFox marketplace of 10,000+ new and used aircraft for sale.
  • get_listing — Fetch full details for a single aircraft listing by its slug, as returned by search_listings.
  • list_my_listings — Return the listings owned by the authenticated account, including drafts and pending_review.
  • create_listing — Create a new aircraft listing.
  • update_listing — Update an existing listing owned by the authenticated account.
  • add_image — Upload a single image to GCS and get back a public URL you can pass to create_listing/update_listing in 'images'.
  • import_from_url — Scrape a third-party listing URL with Firecrawl + OpenAI and return a draft listing payload (without saving it).