{
  "info": {
    "name": "Ecologi — mcp.ai",
    "description": "REST API for the Ecologi 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/ecologi",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "ecologi_get_user_carbon_offset",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/carbon/offset",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "carbon",
            "offset"
          ]
        },
        "description": "Tool to get the total tonnes of CO2e emissions a user has avoided (carbon offset). Data refreshes every 10 minutes. No authentication required.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ecologi_get_user_carbon_removal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/carbon/removal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "carbon",
            "removal"
          ]
        },
        "description": "Tool to retrieve the total tonnes of CO₂e a user has permanently removed from the atmosphere. Data refreshes every 10 minutes. Use when checking carbon offset impact for a specific Ecologi user or bus",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ecologi_get_user_habitat_restoration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/habitat/restoration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "habitat",
            "restoration"
          ]
        },
        "description": "Tool to get the total area of habitat and ecosystem a user has restored. Data refreshes every 10 minutes. No authentication required.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ecologi_get_user_impact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/impact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "impact"
          ]
        },
        "description": "Tool to get a combination of all impact types a user has funded: trees, carbon avoidance, carbon removal, and habitat restoration, in a single request. Data refreshes every 10 minutes and no authentic",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ecologi_get_user_trees",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/trees",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "trees"
          ]
        },
        "description": "Tool to get the total number of trees a user has funded on Ecologi. Use when you need to retrieve tree statistics for a specific user. Data refreshes every 10 minutes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}