🗂️ Trello MCP HTTP API
This endpoint hosts the REST interface for the Trello MCP Server. Use it to list boards, inspect cards, and create new Trello tasks programmatically.
Quick Start
All routes expect HTTPS requests authenticated with the backend Trello credentials:
GET /boards— list all accessible boardsGET /boards/:boardId/lists— enumerate lists on a boardGET /lists/:listId/cards— fetch cards in a listPOST /cards— create a new card (supply JSON body)
Example
curl https://trello.noteware.dev/boards | jq '.[].name'