{
  "info": {
    "name": "Cdr Platform — mcp.ai",
    "description": "REST API for the Cdr Platform MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/cdr_platform",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "cdr_platform_get_cdr_price",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cdr/price",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cdr",
            "price"
          ]
        },
        "description": "Calculate the cost for carbon dioxide removal (CDR) services. Specify one or more removal methods (e.g., 'bio-oil', 'kelp-sinking') with their respective amounts in kilograms to get detailed pricing i",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"items\": \"\",\n  \"currency\": \"\",\n  \"weight_unit\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cdr_platform_get_health_check",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/health/check",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "health",
            "check"
          ]
        },
        "description": "Tool to perform a health check of the CDR Platform service. Use when you need to verify API and database connectivity and core service status.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cdr_platform_post_cdr_purchase",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/cdr/purchase",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "cdr",
            "purchase"
          ]
        },
        "description": "Tool to initiate the purchase of carbon dioxide removal credits. Use after confirming cost and methods to finalize the order.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"items\": \"\",\n  \"currency\": \"\",\n  \"weight_unit\": \"\",\n  \"client_reference_id\": \"\",\n  \"certificate_display_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}