Skip to content

Commit 54d4ae2

Browse files
committed
Add Trello MCP server
Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ
1 parent 14015a9 commit 54d4ae2

1 file changed

Lines changed: 98 additions & 0 deletions

File tree

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "delorenj.trello-mcp-npx",
4+
"name": "Trello (npx)",
5+
"alias": "trello",
6+
"description": "Manage Trello boards, lists, cards, comments, attachments, checklists, and custom fields via the Trello REST API. Provides 40+ tools with built-in rate limiting and workspace navigation.",
7+
"logo": "https://avatars.githubusercontent.com/u/242611?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"productivity"
11+
],
12+
"tags": [
13+
"trello",
14+
"kanban",
15+
"boards",
16+
"cards",
17+
"project-management",
18+
"productivity"
19+
],
20+
"transport": {
21+
"type": "stdio",
22+
"command": "npx",
23+
"args": [
24+
"-y",
25+
"@delorenj/mcp-server-trello"
26+
],
27+
"env": {
28+
"TRELLO_API_KEY": "${input:TRELLO_API_KEY}",
29+
"TRELLO_TOKEN": "${input:TRELLO_TOKEN}",
30+
"TRELLO_BOARD_ID": "${input:TRELLO_BOARD_ID}"
31+
},
32+
"metadata": {
33+
"inputs": [
34+
{
35+
"id": "TRELLO_API_KEY",
36+
"label": "Trello API Key",
37+
"description": "Your Trello API key. Obtain it from the Trello Power-Ups admin / app-key page while logged in.",
38+
"type": "text",
39+
"required": true,
40+
"secret": true,
41+
"placeholder": "********************************",
42+
"obtain": {
43+
"url": "https://trello.com/app-key",
44+
"instructions": "1. Log in to Trello\n2. Open https://trello.com/app-key\n3. Copy the API Key shown at the top of the page",
45+
"button_label": "Get API Key"
46+
}
47+
},
48+
{
49+
"id": "TRELLO_TOKEN",
50+
"label": "Trello Token",
51+
"description": "Trello API token generated from your API key. Grants the server access to act on your behalf.",
52+
"type": "text",
53+
"required": true,
54+
"secret": true,
55+
"placeholder": "********************************************************************",
56+
"obtain": {
57+
"url": "https://trello.com/app-key",
58+
"instructions": "1. Open https://trello.com/app-key\n2. Under the API Key, click the 'Token' link (Manually generate a Token)\n3. Approve the requested permissions\n4. Copy the generated token",
59+
"button_label": "Generate Token"
60+
}
61+
},
62+
{
63+
"id": "TRELLO_BOARD_ID",
64+
"label": "Default Board ID",
65+
"description": "Optional default Trello board ID (deprecated). Can be omitted and changed at runtime via the set_active_board tool.",
66+
"type": "text",
67+
"required": false,
68+
"secret": false,
69+
"placeholder": "5f1d2c3b4a5e6f7a8b9c0d1e"
70+
}
71+
]
72+
}
73+
},
74+
"auth": {
75+
"type": "api_key",
76+
"instructions": "Get your API key at https://trello.com/app-key, then generate a token from that page (Manually generate a Token) and approve the requested permissions."
77+
},
78+
"contributor": {
79+
"name": "delorenj",
80+
"github": "delorenj",
81+
"url": "https://github.com/delorenj/mcp-server-trello"
82+
},
83+
"links": {
84+
"repository": "https://github.com/delorenj/mcp-server-trello",
85+
"homepage": "https://github.com/delorenj/mcp-server-trello",
86+
"documentation": "https://github.com/delorenj/mcp-server-trello#readme"
87+
},
88+
"platforms": [
89+
"all"
90+
],
91+
"capabilities": {
92+
"tools": true,
93+
"resources": false,
94+
"prompts": false,
95+
"read_only_mode": false
96+
},
97+
"changelog_url": "https://github.com/delorenj/mcp-server-trello/releases"
98+
}

0 commit comments

Comments
 (0)