MCP

The Deliverect Model Context Protocol (MCP) server enables AI-powered code editors like Cursor and Windsurf, plus general-purpose tools like Claude Desktop, to interact directly with your Deliverect API and documentation.

What is MCP?

Model Context Protocol (MCP) is an open standard that allows AI applications to securely access external data sources and tools. The Deliverect MCP server provides AI agents with:

  • Documentation search capabilities
  • Code generation assistance for Deliverect integrators

Deliverect MCP Server Setup

Deliverect hosts remote MCP servers for each product branch. Configure your AI development tools to connect to the server matching your integration:

  • deliverect-restaurants — Restaurants (branch 1.1)
  • deliverect-retail — Retail (branch 2.0)
  • deliverect-ordering — Ordering Experience (branch 3.0)

If your APIs require authentication, you can pass in headers via query parameters or however headers are configured in your MCP client.

Claude Desktop

Add the relevant configuration to claude_desktop_config.json:

Deliverect Restaurants
{
  "mcpServers": {
    "deliverect-restaurants": {
      "url": "https://developers.deliverect.com/mcp?branch=1.1-restaurants"
    }
  }
}
Deliverect Retail
{
  "mcpServers": {
    "deliverect-retail": {
      "url": "https://developers.deliverect.com/mcp?branch=2.0-retail"
    }
  }
}
Deliverect Ordering
{
  "mcpServers": {
    "deliverect-ordering": {
      "url": "https://developers.deliverect.com/mcp?branch=3.0-ordering-experience"
    }
  }
}

Cursor

Add the relevant configuration to ~/.cursor/mcp.json:

Deliverect Restaurants
{
  "mcpServers": {
    "deliverect-restaurants": {
      "url": "https://developers.deliverect.com/mcp?branch=1.1-restaurants"
    }
  }
}
Deliverect Retail
{
  "mcpServers": {
    "deliverect-retail": {
      "url": "https://developers.deliverect.com/mcp?branch=2.0-retail"
    }
  }
}
Deliverect Ordering
{
  "mcpServers": {
    "deliverect-ordering": {
      "url": "https://developers.deliverect.com/mcp?branch=3.0-ordering-experience"
    }
  }
}

Windsurf

Add the relevant configuration to ~/.codeium/windsurf/mcp_config.json:

Deliverect Restaurants
{
  "mcpServers": {
    "deliverect-restaurants": {
      "url": "https://developers.deliverect.com/mcp?branch=1.1-restaurants"
    }
  }
}
Deliverect Retail
{
  "mcpServers": {
    "deliverect-retail": {
      "url": "https://developers.deliverect.com/mcp?branch=2.0-retail"
    }
  }
}
Deliverect Ordering
{
  "mcpServers": {
    "deliverect-ordering": {
      "url": "https://developers.deliverect.com/mcp?branch=3.0-ordering-experience"
    }
  }
}

Testing Your MCP Setup

Once configured, you can test your MCP server connection:

  1. Open your AI editor (Cursor, Windsurf, etc.)
  2. Start a new chat with the AI assistant
  3. Ask about Deliverect - try questions like:
    • "How do I process an order for Delivery?"
    • "Show me an example of a Menu payload"
    • "Create a full Commerce workflow using all available endpoints and webhooks"

The AI should now have access to your Deliverect account data and documentation through the MCP server.