{
  "info": {
    "name": "Digital Humani — mcp.ai",
    "description": "REST API for the Digital Humani 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/digital_humani",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "digital_humani_get_current_user_and_enterprise",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/current/user/and/enterprise",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "current",
            "user",
            "and",
            "enterprise"
          ]
        },
        "description": "Return the authenticated Digital Humani user and that user's enterprise details, including the enterprise ID needed by planting and reporting tools.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_humani_get_enterprise_tree_count",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/enterprise/tree/count",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "enterprise",
            "tree",
            "count"
          ]
        },
        "description": "Count trees for an enterprise across all time, one calendar month, or an inclusive date range. Omit all date selectors for the all-time total; otherwise provide either month or both start_date and end",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"month\": \"\",\n  \"end_date\": \"\",\n  \"start_date\": \"\",\n  \"enterprise_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_humani_get_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project"
          ]
        },
        "description": "Return detailed information for one reforestation project, including whether it is active and its localized project fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_humani_get_tree_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/tree/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "tree",
            "request"
          ]
        },
        "description": "Retrieve a tree-planting request by the UUID returned when it was created.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"uuid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_humani_get_user_tree_count",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/tree/count",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "tree",
            "count"
          ]
        },
        "description": "Count trees attributed to an exact end-user identifier within an enterprise.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user\": \"\",\n  \"enterprise_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_humani_list_projects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "projects"
          ]
        },
        "description": "List reforestation project summaries and IDs. Call Get Reforestation Project to confirm a selected project is active before planting.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_humani_plant_trees",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/plant/trees",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "plant",
            "trees"
          ]
        },
        "description": "CHARGEABLE PRODUCTION PURCHASE: create a real tree-planting request at $1 per tree. Use this tool only after the user explicitly authorizes the purchase and its exact tree_count; never use it for test",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user\": \"\",\n  \"project_id\": \"\",\n  \"tree_count\": 0,\n  \"enterprise_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}