Get Sites

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://bump.sh/protect-earth/doc/partner-api/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "Partner API MCP server": {
    "url": "https://bump.sh/protect-earth/doc/partner-api/mcp"
  }
}

Close
GET /sites

Sites are locations where trees are planted or other units are placed. They are the physical location of the work.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id string(uuid) Required
    • name string Required
    • location string Required
    • description string | null Required
    • images array[string(uri)] Required
    • coordinates object | null Required
      Hide coordinates attributes Show coordinates attributes object | null
      • latitude number Required
      • longitude number Required
GET /sites
curl \
 --request GET 'https://api.protect.earth/sites'
Response examples (200)
[
  {
    "id": "string",
    "name": "Bourton on the Water",
    "location": "Cheltenham, England",
    "description": "A mixed habitat restoration site.",
    "images": [
      "https://example.com"
    ],
    "coordinates": {
      "latitude": 42.0,
      "longitude": 42.0
    },
    "links": {
      "self": "https://example.com",
      "map": "https://example.com"
    }
  }
]