# More Trees — how to use (mcp.ai)

Connect your More Trees account and use 4 tools for news and lifestyle straight from your AI agent. Connect with your own API key. More Trees is a sustainability-focused platform planting trees on behalf of individuals or businesses aiming to offset carbon footprints and support reforestation.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_more_trees?ms=1787293500000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `more_trees_create_user`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/more_trees`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/more_trees/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/more_trees/create/user` — Creates a new user that can be assigned to a plantation account. Use this when you need to onboard a new user to the More Trees platform. The user must agree to terms and conditions (is_agreed=true). 
  - body: { status?: string, is_agreed: boolean, last_name: string, first_name: string, phone_number?: string, email_address: string, referral_code?: string, marketing_preference_id?: integer }
- `POST https://api.mcp.ai/api/more_trees/get/marketing/preferences` — Tool to retrieve available marketing preferences. Use when you need to get the list of marketing preference options that users can select.
- `POST https://api.mcp.ai/api/more_trees/get/total/carbon/offset` — Retrieves the total carbon offset and forest statistics for a specified forest. Returns comprehensive data about a forest including: - Forest branding (name, logo, color) - Total CO2 captured - Number
  - body: { forest_slug_or_account_code: string }
- `POST https://api.mcp.ai/api/more_trees/list/projects` — Retrieves all active tree planting projects with comprehensive details. Returns project information including name, ID, description, country, project type, supplier name, and available tree species fo

## Example prompts
- "What can I do in More Trees?"
- "Show me a summary of my More Trees account"

## More
- Page: https://mcp.ai/more_trees
- Agent spec (llms.txt): https://mcp.ai/more_trees/llms.txt
- Postman collection: https://mcp.ai/more_trees/postman.json
