← greengooding.com

INDIVIDUAL MCP TOOL

get_product_details

Fetch full product detail by slug: description, specs, photos, pricing tiers, available physical units, and categories.

greengooding.comnone authenticationAvailability not checked

Input schema

{}

Risk classification

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

  • A tool name or description suggests retrieving external content.

Parent endpoint

greengooding.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.greengooding]
url = "https://mcp.greengooding.com/mcp"
enabled = true
Claude Code

.mcp.json

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

Settings → Connectors → Add custom connector

Name: greengooding
Remote MCP URL: https://mcp.greengooding.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": {
    "greengooding": {
      "url": "https://mcp.greengooding.com/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

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

Client-specific MCP configuration

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

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

Related tools

  • search_products — Search the Green Gooding rental catalog by text query, optionally filtered by NYC zipcode for distance-sorted results.
  • check_availability — Check whether a product is available for a date range.
  • get_quote — Compute a price quote for a rental and return a signed checkout URL the user can click to land in the booking form with dates, delivery option, and coupon pre-filled.
  • list_categories — List the Green Gooding category tree (root categories plus children).
  • get_pickup_zones — Return the pickup/delivery options for a product: each option has type (PICKUP|DELIVERY), location (address + lat/lng), price, and (for delivery) the maximum reachable distance in miles.
  • propose_booking — Re-validate availability + price for a rental and create a Stripe Checkout URL the user (or the agent itself, if it can pay) can complete to book the product end-to-end.