eCommerce
planefox.com
Manages an aircraft marketplace by enabling search, retrieval, and creation of aircraft listings.
ENDPOINT 1
https://planefox.com/mcp
MCP server metadata
- Name
- planefox
- Version
- 1.30.0
Known tools 10
search_listingsSearch the PlaneFox marketplace of 10,000+ new and used aircraft for sale.
Inferred read-onlyget_listingFetch full details for a single aircraft listing by its slug, as returned by search_listings.
Inferred read-onlylist_my_listingsReturn the listings owned by the authenticated account, including drafts and pending_review.
Inferred read-onlyadd_imageUpload a single image to GCS and get back a public URL you can pass to create_listing/update_listing in 'images'.
Potential side effectsimport_from_urlScrape a third-party listing URL with Firecrawl + OpenAI and return a draft listing payload (without saving it).
Inferred read-onlylist_dealersReturn 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 effectsget_dealerReturn one dealer organisation by its id, as listed by list_dealers, with the same org-level metrics.
Inferred read-onlyCONNECT 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**
MCP server metadata
- Name
- planefox
- Version
- 1.30.0
Known tools 10
search_listingsSearch the PlaneFox marketplace of 10,000+ new and used aircraft for sale.
Inferred read-onlyget_listingFetch full details for a single aircraft listing by its slug, as returned by search_listings.
Inferred read-onlylist_my_listingsReturn the listings owned by the authenticated account, including drafts and pending_review.
Inferred read-onlyadd_imageUpload a single image to GCS and get back a public URL you can pass to create_listing/update_listing in 'images'.
Potential side effectsimport_from_urlScrape a third-party listing URL with Firecrawl + OpenAI and return a draft listing payload (without saving it).
Inferred read-onlylist_dealersReturn 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 effectsget_dealerReturn one dealer organisation by its id, as listed by list_dealers, with the same org-level metrics.
Inferred read-onlyCONNECT 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
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.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.