No install? Use cloud.anythingmcp.com directly.
Sign in, install the Trello in one click, paste the credentials, mint an MCP API key — done. No Docker, no git clone, no local server to run.
TL;DR
Drive Trello (Kanban boards) from any AI agent: boards, lists, cards, members, labels, checklists, attachments-by-URL. 13 tools. API key + user token query-string auth (Trello-specific).
💡 ¿Sin instalación? Usa cloud.anythingmcp.com directamente. Inicia sesión, pulsa Connectors → Trello, pega tus credenciales, genera una MCP API key — listo. Sin Docker, sin
git clone, sin servidor local.
Trello + Gemini
Drive Trello (Kanban boards) from any AI agent: boards, lists, cards, members, labels, checklists, attachments-by-URL. 13 tools. API key + user token query-string auth (Trello-specific).
Requisitos previos
Las instrucciones de configuración completas están incluidas en el conector (visibles en el store al seleccionarlo). Las variables de entorno requeridas:
TRELLO_API_KEY, TRELLO_TOKEN
Paso 1 — Obtener credenciales
Setup:
- Sign in to Trello → go to https://trello.com/power-ups/admin → + New to create a Power-Up (this is just the modern way to mint API keys).
- After creation, open the Power-Up → API key section → copy the API key.
- Below it, click Token → authorize the Power-Up → copy the generated user Token.
- Set:
TRELLO_API_KEY= the Power-Up key (a long alphanumeric)TRELLO_TOKEN= the user token (much longer)
Authentication: query-string ?key=${TRELLO_API_KEY}&token=${TRELLO_TOKEN} on every request. The token is per-user — actions are attributed to that user. To act as a different user, mint a separate token via their Trello account.
…(continued in the in-app connector instructions)
Paso 2 — Instalar el adapter
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
Paso 3 — Añadir el conector en Gemini
Gemini CLI lee servidores MCP desde ~/.gemini/settings.json (o %APPDATA%\gemini\settings.json en Windows). Añade:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Obtén tu MCP API key desde AnythingMCP → Perfil → MCP API Keys → Nueva Key.
- Guarda el archivo y reinicia
gemini. - Ejecuta
/mcpen la Gemini CLI —Trellodebería aparecer como disponible. - Vertex AI Studio: pasa
https://cloud.anythingmcp.com/mcpal arraytoolsde tu petición con el mismo header Bearer.
Herramientas disponibles
| Tool | What it does |
|---|---|
trello_get_me | Return the user the token belongs to: id, username, fullName, email, avatarUrl |
trello_list_my_boards | List boards the user is a member of |
trello_get_board | Fetch a board with optional nested resources (lists/cards/labels/members) via inclusion params |
trello_get_board_lists | List the lists (columns) on a board |
trello_list_cards_in_list | List cards in a list |
trello_get_card | Fetch a single card with optional members/labels/checklists/attachments included |
trello_create_card | Create a card in a list |
trello_update_card | Update a card |
trello_delete_card | Permanently delete a card |
trello_add_card_comment | Add a comment to a card (creates an action of type commentCard) |
trello_attach_url_to_card | Attach a URL (link) to a card |
trello_list_board_labels | List labels available on a board |
trello_search | Universal search across boards, cards, members and organizations |
FAQ
¿Gemini 1.5 Pro o 2.x soportan MCP? Sí — Gemini CLI ≥ 0.4 y la API de tools de Vertex AI aceptan conectores MCP httpUrl con header Bearer.
Siguientes pasos
¿Te ha sido útil esta guía?