Claude
claude.ai and the Claude desktop apps — all plans
- Open Settings → Connectors (or claude.ai/customize/connectors).
- Click Add custom connector.
- Paste the server URL and click Add. No sign-in is requested — the server is public and read-only.
- In a chat, enable the connector and ask about inventory, pricing or delivery.
ChatGPT
Plus, Pro, Team and Enterprise
- Settings → Apps → Advanced settings → turn on Developer mode.
- Settings → Apps → Create. Name it Prime Cuts Nursery, paste the server URL, choose No authentication.
- Click Scan tools, then Create.
- Turn the app on in a conversation from the + menu.
Google Gemini
Gemini Spark — Google AI Pro or Ultra, personal Google account, US, English
- Go to gemini.google.com → Settings & help → Connected Apps.
- Under Custom apps for Spark, click Add a custom app and paste the server URL.
- Click Next, accept the connection notice, then Connect. Gemini lists the tools it synced.
- Start a prompt with @Prime Cuts Nursery Public Data to use it.
Verified live 2026-09-08: Gemini synced all tools and quoted current stock and the seasonal per-plant price. The regular Gemini chat and Google AI Overviews do not call third-party tools; only Spark does.
Perplexity
Pro / Max, any model
- Settings → Connectors → + Custom connector → Remote.
- Name: Prime Cuts Nursery. URL: the server URL. Transport: Streamable HTTP. Auth: none.
- Acknowledge the third-party notice and Add. One connector serves every model Perplexity runs.
Cursor
Add to Cursorany plan
- Click the install button, or add the JSON below to ~/.cursor/mcp.json (or your project's .cursor/mcp.json).
- Cursor lists the server under Settings → MCP; tools are available to the agent immediately.
{
"mcpServers": {
"prime-cuts-nursery": { "url": "https://www.primecutsnursery.com/api/mcp" }
}
}VS Code + GitHub Copilot
Add to VS CodeCopilot Chat agent mode
- Click the install button, or add the JSON below to .vscode/mcp.json (root key is servers).
- Open Copilot Chat in agent mode; the tools appear in the tool picker.
{
"servers": {
"prime-cuts-nursery": { "type": "http", "url": "https://www.primecutsnursery.com/api/mcp" }
}
}Claude Code
terminal
- Run the command below once; it is saved for future sessions.
claude mcp add --transport http prime-cuts-nursery https://www.primecutsnursery.com/api/mcpGoose
Add to GooseBlock's open-source agent
- Click the install button, or Extensions → Add custom extension → Streamable HTTP → paste the server URL.
LM Studio, Open WebUI, LibreChat, Jan, Cherry Studio
local and self-hosted assistants
- Add a remote MCP server of type Streamable HTTP with the server URL and no credentials.
- Any model running inside an MCP-capable app can then read live inventory — including fully local models.
Your own agent
OpenAI, Anthropic, Gemini or Vertex AI SDKs; LangChain, Agents SDK, ADK
- Point your framework's remote-MCP tool at the server URL, or load the OpenAPI 3.1 document for function calling over the REST API.
- Both return identical JSON with an html_url to cite. No key, open CORS, 60 requests/minute per IP.
# OpenAI Responses API
tools=[{"type": "mcp", "server_label": "prime_cuts_nursery",
"server_url": "https://www.primecutsnursery.com/api/mcp", "require_approval": "never"}]
# OpenAPI for function calling / custom GPT actions
https://www.primecutsnursery.com/openapi.jsonWhat you can ask once connected
- Which strains are in stock right now, with quantities and the as-of time.
- Today's per-plant price for a given quantity of fresh clones, talls, teens or snips — the seasonal ladder is applied automatically.
- An exact delivery fee and order total to any California address, from the nursery's own calculator.
- Lineage, breeder and terpene facts for 300+ cultivars, and which ones Prime Cuts propagates.
- The HLVd testing policy, license number, hours, minimums and how to order.
Every tool returns the same JSON as the public REST API and includes a canonical page URL to cite. Full tool reference: /developers/mcp. Sales are to licensed California cultivators only.
