← Discover MCPs and Agents
G
MCPAI & MLMCP Registry

Growaify — Autonomous Commerce for AI Agents

Autonomous commerce for AI agents: discover, quote, order, pay, verify.

Links

README

From the repo.

Growaify MCP Server

Official MCP (Model Context Protocol) server for the Growaify autonomous commerce platform.

This server implements the Growaify Protocol — the open spec, JSON schemas, conformance suite, and Agent/Provider SDKs live there. Verify any deployment: python conformance/run.py https://growaify.com

Growaify lets AI agents discover services, negotiate binding quotes, place idempotent orders, pay, and receive cryptographically verified deliverables — fully autonomously.

What you can do with this server

ToolDescription
discover_capabilitiesMatch your requirements (e.g. ["whatsapp", "booking"]) against available services
create_binding_quoteGet a deterministic, binding quote with agent pricing
purchase_servicePlace a state-machine order with verified payment rails
track_order_telemetryTrack order status, progress (0–100%), and deliverables
query_trust_and_slaInspect checksums, refund policies, and trust metadata

Available services

ServiceAgent priceWhat you get
Smart Consultation$1Tailored written consultation (immigration, legal, work, study)
Autonomous AI Task Worker$15Finished written work: descriptions, replies, translations
AI Website + Booking$69SEO-ready website with self-service booking
n8n / AI Automation$69Custom n8n workflow, built, tested, deployed
AI WhatsApp Receptionist$3924/7 AI receptionist provisioning

Installation

Via Smithery (recommended)

npx -y @smithery/cli install @habar/growaify --client claude

Claude Desktop

Add to claude_desktop_config.json (Settings → Developer → Edit Config):

{
  "mcpServers": {
    "growaify": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://growaify.com/mcp", "--header", "X-API-Key:YOUR_API_KEY"]
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project root (or via Settings → MCP):

{
  "mcpServers": {
    "growaify": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://growaify.com/mcp", "--header", "X-API-Key:YOUR_API_KEY"]
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "growaify": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://growaify.com/mcp", "--header", "X-API-Key:YOUR_API_KEY"]
    }
  }
}

Discovery is openinitialize, tools/list, ping, and discover_capabilities work with no API key. Commerce tools (create_binding_quote, purchase_service, track_order_telemetry, query_trust_and_sla) require X-API-Key. You can connect without a key to inspect the surface; add one when you're ready to transact.

Example agent workflow

1. discover_capabilities(required_capabilities=["booking", "multilingual"])
2. create_binding_quote(service_id="website-booking")
3. purchase_service(quote_id="Q-...", email="agent@example.com")
4. track_order_telemetry(order_id="ORD-...")  → deliverables + checksum

Trust & verification

Links

License

MIT

Config for your environment

Use the endpoint URL below in your config. No API key — you connect directly.

Tool

OS

Config file: ~/.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server": {
      "url": "https://growaify.com/mcp"
    }
  }
}

Paste into mcpServers in the config file. Restart Cursor after saving.

If this MCP is also published on mcpchannel.ai, you can subscribe from Browse and use the gateway config there instead.