{
  "schemaVersion": "1.0",
  "item": {
    "slug": "trello-api",
    "name": "Trello",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/byungkyu/trello-api",
    "canonicalUrl": "https://clawhub.ai/byungkyu/trello-api",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/trello-api",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=trello-api",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "LICENSE.txt"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "trello-api",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T13:08:52.355Z",
      "expiresAt": "2026-05-08T13:08:52.355Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=trello-api",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=trello-api",
        "contentDisposition": "attachment; filename=\"trello-api-1.0.4.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "trello-api"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/trello-api"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/trello-api",
    "agentPageUrl": "https://openagent3.xyz/skills/trello-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/trello-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/trello-api/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Trello",
        "body": "Access the Trello API with managed OAuth authentication. Manage boards, lists, cards, checklists, labels, and members for project and task management."
      },
      {
        "title": "Quick Start",
        "body": "# Get boards for current user\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/trello/1/members/me/boards')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Base URL",
        "body": "https://gateway.maton.ai/trello/{native-api-path}\n\nReplace {native-api-path} with the actual Trello API endpoint path. The gateway proxies requests to api.trello.com and automatically injects your OAuth token."
      },
      {
        "title": "Authentication",
        "body": "All requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\""
      },
      {
        "title": "Getting Your API Key",
        "body": "Sign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key"
      },
      {
        "title": "Connection Management",
        "body": "Manage your Trello OAuth connections at https://ctrl.maton.ai."
      },
      {
        "title": "List Connections",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=trello&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Create Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'trello'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Get Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"21fd90f9-5935-43cd-b6c8-bde9d915ca80\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2025-12-08T07:20:53.488460Z\",\n    \"last_updated_time\": \"2026-01-31T20:03:32.593153Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"trello\",\n    \"metadata\": {}\n  }\n}\n\nOpen the returned url in a browser to complete OAuth authorization."
      },
      {
        "title": "Delete Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Specifying Connection",
        "body": "If you have multiple Trello connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/trello/1/members/me/boards')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nIf omitted, the gateway uses the default (oldest) active connection."
      },
      {
        "title": "Members",
        "body": "Get Current Member\n\nGET /trello/1/members/me\n\nGet Member's Boards\n\nGET /trello/1/members/me/boards\n\nQuery parameters:\n\nfilter - Filter boards: all, open, closed, members, organization, starred\nfields - Comma-separated fields to include"
      },
      {
        "title": "Boards",
        "body": "Get Board\n\nGET /trello/1/boards/{id}\n\nQuery parameters:\n\nfields - Comma-separated fields\nlists - Include lists: all, open, closed, none\ncards - Include cards: all, open, closed, none\nmembers - Include members: all, none\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/trello/1/boards/BOARD_ID?lists=open&cards=open')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCreate Board\n\nPOST /trello/1/boards\nContent-Type: application/json\n\n{\n  \"name\": \"Project Alpha\",\n  \"desc\": \"Main project board\",\n  \"defaultLists\": false,\n  \"prefs_permissionLevel\": \"private\"\n}\n\nUpdate Board\n\nPUT /trello/1/boards/{id}\nContent-Type: application/json\n\n{\n  \"name\": \"Project Alpha - Updated\",\n  \"desc\": \"Updated description\"\n}\n\nDelete Board\n\nDELETE /trello/1/boards/{id}\n\nGet Board Lists\n\nGET /trello/1/boards/{id}/lists\n\nQuery parameters:\n\nfilter - Filter: all, open, closed, none\n\nGet Board Cards\n\nGET /trello/1/boards/{id}/cards\n\nGet Board Members\n\nGET /trello/1/boards/{id}/members"
      },
      {
        "title": "Lists",
        "body": "Get List\n\nGET /trello/1/lists/{id}\n\nCreate List\n\nPOST /trello/1/lists\nContent-Type: application/json\n\n{\n  \"name\": \"To Do\",\n  \"idBoard\": \"BOARD_ID\",\n  \"pos\": \"top\"\n}\n\nUpdate List\n\nPUT /trello/1/lists/{id}\nContent-Type: application/json\n\n{\n  \"name\": \"In Progress\"\n}\n\nArchive List\n\nPUT /trello/1/lists/{id}/closed\nContent-Type: application/json\n\n{\n  \"value\": true\n}\n\nGet Cards in List\n\nGET /trello/1/lists/{id}/cards\n\nMove All Cards in List\n\nPOST /trello/1/lists/{id}/moveAllCards\nContent-Type: application/json\n\n{\n  \"idBoard\": \"BOARD_ID\",\n  \"idList\": \"TARGET_LIST_ID\"\n}"
      },
      {
        "title": "Cards",
        "body": "Get Card\n\nGET /trello/1/cards/{id}\n\nQuery parameters:\n\nfields - Comma-separated fields\nmembers - Include members (true/false)\nchecklists - Include checklists: all, none\nattachments - Include attachments (true/false)\n\nCreate Card\n\nPOST /trello/1/cards\nContent-Type: application/json\n\n{\n  \"name\": \"Implement feature X\",\n  \"desc\": \"Description of the task\",\n  \"idList\": \"LIST_ID\",\n  \"pos\": \"bottom\",\n  \"due\": \"2025-03-30T12:00:00.000Z\",\n  \"idMembers\": [\"MEMBER_ID\"],\n  \"idLabels\": [\"LABEL_ID\"]\n}\n\nUpdate Card\n\nPUT /trello/1/cards/{id}\nContent-Type: application/json\n\n{\n  \"name\": \"Updated card name\",\n  \"desc\": \"Updated description\",\n  \"due\": \"2025-04-15T12:00:00.000Z\",\n  \"dueComplete\": false\n}\n\nMove Card to List\n\nPUT /trello/1/cards/{id}\nContent-Type: application/json\n\n{\n  \"idList\": \"NEW_LIST_ID\",\n  \"pos\": \"top\"\n}\n\nDelete Card\n\nDELETE /trello/1/cards/{id}\n\nAdd Comment to Card\n\nPOST /trello/1/cards/{id}/actions/comments\nContent-Type: application/json\n\n{\n  \"text\": \"This is a comment\"\n}\n\nAdd Member to Card\n\nPOST /trello/1/cards/{id}/idMembers\nContent-Type: application/json\n\n{\n  \"value\": \"MEMBER_ID\"\n}\n\nRemove Member from Card\n\nDELETE /trello/1/cards/{id}/idMembers/{idMember}\n\nAdd Label to Card\n\nPOST /trello/1/cards/{id}/idLabels\nContent-Type: application/json\n\n{\n  \"value\": \"LABEL_ID\"\n}"
      },
      {
        "title": "Checklists",
        "body": "Get Checklist\n\nGET /trello/1/checklists/{id}\n\nCreate Checklist\n\nPOST /trello/1/checklists\nContent-Type: application/json\n\n{\n  \"idCard\": \"CARD_ID\",\n  \"name\": \"Task Checklist\"\n}\n\nCreate Checklist Item\n\nPOST /trello/1/checklists/{id}/checkItems\nContent-Type: application/json\n\n{\n  \"name\": \"Subtask 1\",\n  \"pos\": \"bottom\",\n  \"checked\": false\n}\n\nUpdate Checklist Item\n\nPUT /trello/1/cards/{cardId}/checkItem/{checkItemId}\nContent-Type: application/json\n\n{\n  \"state\": \"complete\"\n}\n\nDelete Checklist\n\nDELETE /trello/1/checklists/{id}"
      },
      {
        "title": "Labels",
        "body": "Get Board Labels\n\nGET /trello/1/boards/{id}/labels\n\nCreate Label\n\nPOST /trello/1/labels\nContent-Type: application/json\n\n{\n  \"name\": \"High Priority\",\n  \"color\": \"red\",\n  \"idBoard\": \"BOARD_ID\"\n}\n\nColors: yellow, purple, blue, red, green, orange, black, sky, pink, lime, null (no color)\n\nUpdate Label\n\nPUT /trello/1/labels/{id}\nContent-Type: application/json\n\n{\n  \"name\": \"Critical\",\n  \"color\": \"red\"\n}\n\nDelete Label\n\nDELETE /trello/1/labels/{id}"
      },
      {
        "title": "Search",
        "body": "Search All\n\nGET /trello/1/search?query=keyword&modelTypes=cards,boards\n\nQuery parameters:\n\nquery - Search query (required)\nmodelTypes - Comma-separated: actions, boards, cards, members, organizations\nboard_fields - Fields to return for boards\ncard_fields - Fields to return for cards\ncards_limit - Max cards to return (1-1000)"
      },
      {
        "title": "JavaScript",
        "body": "const headers = {\n  'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n};\n\n// Get boards\nconst boards = await fetch(\n  'https://gateway.maton.ai/trello/1/members/me/boards',\n  { headers }\n).then(r => r.json());\n\n// Create card\nawait fetch(\n  'https://gateway.maton.ai/trello/1/cards',\n  {\n    method: 'POST',\n    headers: { ...headers, 'Content-Type': 'application/json' },\n    body: JSON.stringify({\n      name: 'New Task',\n      idList: 'LIST_ID',\n      desc: 'Task description'\n    })\n  }\n);"
      },
      {
        "title": "Python",
        "body": "import os\nimport requests\n\nheaders = {'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'}\n\n# Get boards\nboards = requests.get(\n    'https://gateway.maton.ai/trello/1/members/me/boards',\n    headers=headers\n).json()\n\n# Create card\nresponse = requests.post(\n    'https://gateway.maton.ai/trello/1/cards',\n    headers=headers,\n    json={\n        'name': 'New Task',\n        'idList': 'LIST_ID',\n        'desc': 'Task description'\n    }\n)"
      },
      {
        "title": "Notes",
        "body": "IDs are 24-character alphanumeric strings\nUse me to reference the authenticated user\nDates are in ISO 8601 format\npos can be top, bottom, or a positive number\nCard positions within lists are floating point numbers\nUse fields parameter to limit returned data and improve performance\nArchived items can be retrieved with filter=closed\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets (fields[], sort[], records[]) to disable glob parsing\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments. You may get \"Invalid API key\" errors when piping."
      },
      {
        "title": "Error Handling",
        "body": "StatusMeaning400Missing Trello connection or invalid request401Invalid or missing Maton API key404Board, list, or card not found429Rate limited (10 req/sec per account)4xx/5xxPassthrough error from Trello API"
      },
      {
        "title": "Troubleshooting: API Key Issues",
        "body": "Check that the MATON_API_KEY environment variable is set:\n\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Troubleshooting: Invalid App Name",
        "body": "Ensure your URL path starts with trello. For example:\n\nCorrect: https://gateway.maton.ai/trello/1/members/me/boards\nIncorrect: https://gateway.maton.ai/1/members/me/boards"
      },
      {
        "title": "Resources",
        "body": "Trello API Overview\nBoards\nLists\nCards\nChecklists\nLabels\nMembers\nSearch\nMaton Community\nMaton Support"
      }
    ],
    "body": "Trello\n\nAccess the Trello API with managed OAuth authentication. Manage boards, lists, cards, checklists, labels, and members for project and task management.\n\nQuick Start\n# Get boards for current user\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/trello/1/members/me/boards')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nBase URL\nhttps://gateway.maton.ai/trello/{native-api-path}\n\n\nReplace {native-api-path} with the actual Trello API endpoint path. The gateway proxies requests to api.trello.com and automatically injects your OAuth token.\n\nAuthentication\n\nAll requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\"\n\nGetting Your API Key\nSign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key\nConnection Management\n\nManage your Trello OAuth connections at https://ctrl.maton.ai.\n\nList Connections\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=trello&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCreate Connection\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'trello'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nGet Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"21fd90f9-5935-43cd-b6c8-bde9d915ca80\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2025-12-08T07:20:53.488460Z\",\n    \"last_updated_time\": \"2026-01-31T20:03:32.593153Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"trello\",\n    \"metadata\": {}\n  }\n}\n\n\nOpen the returned url in a browser to complete OAuth authorization.\n\nDelete Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nSpecifying Connection\n\nIf you have multiple Trello connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/trello/1/members/me/boards')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nIf omitted, the gateway uses the default (oldest) active connection.\n\nAPI Reference\nMembers\nGet Current Member\nGET /trello/1/members/me\n\nGet Member's Boards\nGET /trello/1/members/me/boards\n\n\nQuery parameters:\n\nfilter - Filter boards: all, open, closed, members, organization, starred\nfields - Comma-separated fields to include\nBoards\nGet Board\nGET /trello/1/boards/{id}\n\n\nQuery parameters:\n\nfields - Comma-separated fields\nlists - Include lists: all, open, closed, none\ncards - Include cards: all, open, closed, none\nmembers - Include members: all, none\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/trello/1/boards/BOARD_ID?lists=open&cards=open')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCreate Board\nPOST /trello/1/boards\nContent-Type: application/json\n\n{\n  \"name\": \"Project Alpha\",\n  \"desc\": \"Main project board\",\n  \"defaultLists\": false,\n  \"prefs_permissionLevel\": \"private\"\n}\n\nUpdate Board\nPUT /trello/1/boards/{id}\nContent-Type: application/json\n\n{\n  \"name\": \"Project Alpha - Updated\",\n  \"desc\": \"Updated description\"\n}\n\nDelete Board\nDELETE /trello/1/boards/{id}\n\nGet Board Lists\nGET /trello/1/boards/{id}/lists\n\n\nQuery parameters:\n\nfilter - Filter: all, open, closed, none\nGet Board Cards\nGET /trello/1/boards/{id}/cards\n\nGet Board Members\nGET /trello/1/boards/{id}/members\n\nLists\nGet List\nGET /trello/1/lists/{id}\n\nCreate List\nPOST /trello/1/lists\nContent-Type: application/json\n\n{\n  \"name\": \"To Do\",\n  \"idBoard\": \"BOARD_ID\",\n  \"pos\": \"top\"\n}\n\nUpdate List\nPUT /trello/1/lists/{id}\nContent-Type: application/json\n\n{\n  \"name\": \"In Progress\"\n}\n\nArchive List\nPUT /trello/1/lists/{id}/closed\nContent-Type: application/json\n\n{\n  \"value\": true\n}\n\nGet Cards in List\nGET /trello/1/lists/{id}/cards\n\nMove All Cards in List\nPOST /trello/1/lists/{id}/moveAllCards\nContent-Type: application/json\n\n{\n  \"idBoard\": \"BOARD_ID\",\n  \"idList\": \"TARGET_LIST_ID\"\n}\n\nCards\nGet Card\nGET /trello/1/cards/{id}\n\n\nQuery parameters:\n\nfields - Comma-separated fields\nmembers - Include members (true/false)\nchecklists - Include checklists: all, none\nattachments - Include attachments (true/false)\nCreate Card\nPOST /trello/1/cards\nContent-Type: application/json\n\n{\n  \"name\": \"Implement feature X\",\n  \"desc\": \"Description of the task\",\n  \"idList\": \"LIST_ID\",\n  \"pos\": \"bottom\",\n  \"due\": \"2025-03-30T12:00:00.000Z\",\n  \"idMembers\": [\"MEMBER_ID\"],\n  \"idLabels\": [\"LABEL_ID\"]\n}\n\nUpdate Card\nPUT /trello/1/cards/{id}\nContent-Type: application/json\n\n{\n  \"name\": \"Updated card name\",\n  \"desc\": \"Updated description\",\n  \"due\": \"2025-04-15T12:00:00.000Z\",\n  \"dueComplete\": false\n}\n\nMove Card to List\nPUT /trello/1/cards/{id}\nContent-Type: application/json\n\n{\n  \"idList\": \"NEW_LIST_ID\",\n  \"pos\": \"top\"\n}\n\nDelete Card\nDELETE /trello/1/cards/{id}\n\nAdd Comment to Card\nPOST /trello/1/cards/{id}/actions/comments\nContent-Type: application/json\n\n{\n  \"text\": \"This is a comment\"\n}\n\nAdd Member to Card\nPOST /trello/1/cards/{id}/idMembers\nContent-Type: application/json\n\n{\n  \"value\": \"MEMBER_ID\"\n}\n\nRemove Member from Card\nDELETE /trello/1/cards/{id}/idMembers/{idMember}\n\nAdd Label to Card\nPOST /trello/1/cards/{id}/idLabels\nContent-Type: application/json\n\n{\n  \"value\": \"LABEL_ID\"\n}\n\nChecklists\nGet Checklist\nGET /trello/1/checklists/{id}\n\nCreate Checklist\nPOST /trello/1/checklists\nContent-Type: application/json\n\n{\n  \"idCard\": \"CARD_ID\",\n  \"name\": \"Task Checklist\"\n}\n\nCreate Checklist Item\nPOST /trello/1/checklists/{id}/checkItems\nContent-Type: application/json\n\n{\n  \"name\": \"Subtask 1\",\n  \"pos\": \"bottom\",\n  \"checked\": false\n}\n\nUpdate Checklist Item\nPUT /trello/1/cards/{cardId}/checkItem/{checkItemId}\nContent-Type: application/json\n\n{\n  \"state\": \"complete\"\n}\n\nDelete Checklist\nDELETE /trello/1/checklists/{id}\n\nLabels\nGet Board Labels\nGET /trello/1/boards/{id}/labels\n\nCreate Label\nPOST /trello/1/labels\nContent-Type: application/json\n\n{\n  \"name\": \"High Priority\",\n  \"color\": \"red\",\n  \"idBoard\": \"BOARD_ID\"\n}\n\n\nColors: yellow, purple, blue, red, green, orange, black, sky, pink, lime, null (no color)\n\nUpdate Label\nPUT /trello/1/labels/{id}\nContent-Type: application/json\n\n{\n  \"name\": \"Critical\",\n  \"color\": \"red\"\n}\n\nDelete Label\nDELETE /trello/1/labels/{id}\n\nSearch\nSearch All\nGET /trello/1/search?query=keyword&modelTypes=cards,boards\n\n\nQuery parameters:\n\nquery - Search query (required)\nmodelTypes - Comma-separated: actions, boards, cards, members, organizations\nboard_fields - Fields to return for boards\ncard_fields - Fields to return for cards\ncards_limit - Max cards to return (1-1000)\nCode Examples\nJavaScript\nconst headers = {\n  'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n};\n\n// Get boards\nconst boards = await fetch(\n  'https://gateway.maton.ai/trello/1/members/me/boards',\n  { headers }\n).then(r => r.json());\n\n// Create card\nawait fetch(\n  'https://gateway.maton.ai/trello/1/cards',\n  {\n    method: 'POST',\n    headers: { ...headers, 'Content-Type': 'application/json' },\n    body: JSON.stringify({\n      name: 'New Task',\n      idList: 'LIST_ID',\n      desc: 'Task description'\n    })\n  }\n);\n\nPython\nimport os\nimport requests\n\nheaders = {'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'}\n\n# Get boards\nboards = requests.get(\n    'https://gateway.maton.ai/trello/1/members/me/boards',\n    headers=headers\n).json()\n\n# Create card\nresponse = requests.post(\n    'https://gateway.maton.ai/trello/1/cards',\n    headers=headers,\n    json={\n        'name': 'New Task',\n        'idList': 'LIST_ID',\n        'desc': 'Task description'\n    }\n)\n\nNotes\nIDs are 24-character alphanumeric strings\nUse me to reference the authenticated user\nDates are in ISO 8601 format\npos can be top, bottom, or a positive number\nCard positions within lists are floating point numbers\nUse fields parameter to limit returned data and improve performance\nArchived items can be retrieved with filter=closed\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets (fields[], sort[], records[]) to disable glob parsing\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments. You may get \"Invalid API key\" errors when piping.\nError Handling\nStatus\tMeaning\n400\tMissing Trello connection or invalid request\n401\tInvalid or missing Maton API key\n404\tBoard, list, or card not found\n429\tRate limited (10 req/sec per account)\n4xx/5xx\tPassthrough error from Trello API\nTroubleshooting: API Key Issues\nCheck that the MATON_API_KEY environment variable is set:\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nTroubleshooting: Invalid App Name\nEnsure your URL path starts with trello. For example:\nCorrect: https://gateway.maton.ai/trello/1/members/me/boards\nIncorrect: https://gateway.maton.ai/1/members/me/boards\nResources\nTrello API Overview\nBoards\nLists\nCards\nChecklists\nLabels\nMembers\nSearch\nMaton Community\nMaton Support"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/byungkyu/trello-api",
    "publisherUrl": "https://clawhub.ai/byungkyu/trello-api",
    "owner": "byungkyu",
    "version": "1.0.3",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/trello-api",
    "downloadUrl": "https://openagent3.xyz/downloads/trello-api",
    "agentUrl": "https://openagent3.xyz/skills/trello-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/trello-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/trello-api/agent.md"
  }
}