← flowersghana.com

INDIVIDUAL MCP TOOL

create_checkout_link

Use this when a user wants to buy specific products now: pass the exact product ids from search (p: prefixed) or list_products with quantities to receive a pre-filled checkout link valid for four days.

flowersghana.comnone authenticationAvailability not checked

LIVE ENDPOINT

https://www.flowersghana.com/mcp

No auth detected

Connect to this endpoint to inspect the live schema for create_checkout_link 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

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

.mcp.json

{
  "mcpServers": {
    "flowers-ghana": {
      "type": "http",
      "url": "https://www.flowersghana.com/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

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

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "flowers-ghana": {
      "type": "http",
      "url": "https://www.flowersghana.com/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "flowers-ghana",
  "transport": "streamable-http",
  "url": "https://www.flowersghana.com/mcp"
}
MCP Inspector

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

Related tools

  • search — Use this when a user asks about specific flowers, bouquets, products, delivery policies, care instructions, FAQs, or website features; it searches both the product catalog and the knowledge base and returns opaque ids for follow-up fetch calls.
  • fetch — Use this when you need the full content of a search result: pass the opaque id returned by the search tool to retrieve the document's title, plain-text body, canonical URL, and safe metadata.
  • list_products — Use this when a user wants to browse the catalog without a specific query, such as 'what do you sell?' or 'show me more flowers'; it pages through available bouquets with prices and links.
  • track_order — Use this when a customer asks about the status or delivery of an order they already placed; pass the email address used at checkout together with their tracking code to get the current status, tracking timeline, and expected delivery date.