← Registry

eCommerce

planefox.com

Manages an aircraft marketplace by enabling search, retrieval, and creation of aircraft listings.

3 endpoints20 known toolsFirst detected September 7, 2026Last detected September 7, 2026

ENDPOINT 1

https://planefox.com/mcp

No auth detected

MCP server metadata

Name
planefox
Version
1.30.0
Capabilities
experimentaltools

Known tools 10

whoami

Return the authenticated account's email and auth method.

Potential side effects
search_listings

Search the PlaneFox marketplace of 10,000+ new and used aircraft for sale.

Inferred read-only
get_listing

Fetch full details for a single aircraft listing by its slug, as returned by search_listings.

Inferred read-only
list_my_listings

Return the listings owned by the authenticated account, including drafts and pending_review.

Inferred read-only
create_listing

Create a new aircraft listing.

Potential side effects
update_listing

Update an existing listing owned by the authenticated account.

Potential side effects
add_image

Upload a single image to GCS and get back a public URL you can pass to create_listing/update_listing in 'images'.

Potential side effects
import_from_url

Scrape a third-party listing URL with Firecrawl + OpenAI and return a draft listing payload (without saving it).

Inferred read-only
list_dealers

Return the roster of PlaneFox dealer organisations with org-level metrics: status, verification, inventory (crawled + self-uploaded), leads, engagement and email open/click totals, plus platform-wide totals.

Potential side effects
get_dealer

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

Inferred read-only

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.

ENDPOINT 2

https://planefox.com/mcp/secure%60**

No auth detected

MCP server metadata

Name
planefox
Version
1.30.0
Capabilities
experimentaltools

Known tools 10

whoami

Return the authenticated account's email and auth method.

Potential side effects
search_listings

Search the PlaneFox marketplace of 10,000+ new and used aircraft for sale.

Inferred read-only
get_listing

Fetch full details for a single aircraft listing by its slug, as returned by search_listings.

Inferred read-only
list_my_listings

Return the listings owned by the authenticated account, including drafts and pending_review.

Inferred read-only
create_listing

Create a new aircraft listing.

Potential side effects
update_listing

Update an existing listing owned by the authenticated account.

Potential side effects
add_image

Upload a single image to GCS and get back a public URL you can pass to create_listing/update_listing in 'images'.

Potential side effects
import_from_url

Scrape a third-party listing URL with Firecrawl + OpenAI and return a draft listing payload (without saving it).

Inferred read-only
list_dealers

Return the roster of PlaneFox dealer organisations with org-level metrics: status, verification, inventory (crawled + self-uploaded), leads, engagement and email open/click totals, plus platform-wide totals.

Potential side effects
get_dealer

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

Inferred read-only

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/secure%60**"
enabled = true
Claude Code

.mcp.json

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

Settings → Connectors → Add custom connector

Name: planefox
Remote MCP URL: https://planefox.com/mcp/secure%60**

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/secure%60**"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

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

Client-specific MCP configuration

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

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

ENDPOINT 3

https://planefox.com/mcp/secure

Auth required

Known tools 0

No tool metadata was available in the registry cache.

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-com]
url = "https://planefox.com/mcp/secure"
enabled = true
bearer_token_env_var = "MCP_BEARER_TOKEN"

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Code

.mcp.json

{
  "mcpServers": {
    "planefox-com": {
      "type": "http",
      "url": "https://planefox.com/mcp/secure",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Desktop

Settings → Connectors → Add custom connector

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

Add the URL as a custom connector, then complete its supported authorization flow. Claude Desktop remote connectors are configured in the UI.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "planefox-com": {
      "url": "https://planefox.com/mcp/secure",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Visual Studio Code

.vscode/mcp.json

{
  "servers": {
    "planefox-com": {
      "type": "http",
      "url": "https://planefox.com/mcp/secure",
      "headers": {
        "Authorization": "Bearer ${input:mcp-token}"
      }
    }
  },
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-token",
      "description": "planefox-com bearer token",
      "password": true
    }
  ]
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Generic MCP

Client-specific MCP configuration

{
  "name": "planefox-com",
  "transport": "streamable-http",
  "url": "https://planefox.com/mcp/secure",
  "headers": {
    "Authorization": "Bearer YOUR_BEARER_TOKEN"
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

MCP Inspector

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

TRUST AND VERIFICATION EVIDENCE

Loading Trust v2 evidence…

Checking the associated registrable domain. The BuiltWith key remains server-side.

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.