@delorenj/mcp-server-trello 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +48 -20
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
# MCP Server Trello
|
|
2
|
+
[](https://smithery.ai/server/@modelcontextprotocol/mcp-server-trello)
|
|
2
3
|
|
|
3
4
|
A Model Context Protocol (MCP) server that provides tools for interacting with Trello boards. This server enables seamless integration with Trello's API while handling rate limiting, type safety, and error handling automatically.
|
|
4
5
|
|
|
6
|
+
<a href="https://glama.ai/mcp/servers/klqkamy7wt"><img width="380" height="200" src="https://glama.ai/mcp/servers/klqkamy7wt/badge" alt="Server Trello MCP server" /></a>
|
|
7
|
+
|
|
5
8
|
## Changelog
|
|
6
9
|
|
|
10
|
+
### 0.1.2
|
|
11
|
+
|
|
12
|
+
- Added Docker support with multi-stage build
|
|
13
|
+
- Improved security by moving environment variables to `.env`
|
|
14
|
+
- Added Docker Compose configuration
|
|
15
|
+
- Added `.env.template` for easier setup
|
|
16
|
+
|
|
7
17
|
### 0.1.1
|
|
8
18
|
|
|
9
19
|
- Added `move_card` tool to move cards between lists
|
|
@@ -23,35 +33,53 @@ A Model Context Protocol (MCP) server that provides tools for interacting with T
|
|
|
23
33
|
|
|
24
34
|
## Installation
|
|
25
35
|
|
|
36
|
+
### Docker Installation (Recommended)
|
|
37
|
+
|
|
38
|
+
The easiest way to run the server is using Docker:
|
|
39
|
+
|
|
40
|
+
1. Clone the repository:
|
|
41
|
+
```bash
|
|
42
|
+
git clone https://github.com/delorenj/mcp-server-trello
|
|
43
|
+
cd mcp-server-trello
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
2. Copy the environment template and fill in your Trello credentials:
|
|
47
|
+
```bash
|
|
48
|
+
cp .env.template .env
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
3. Build and run with Docker Compose:
|
|
52
|
+
```bash
|
|
53
|
+
docker compose up --build
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
### Installing via Smithery
|
|
57
|
+
|
|
58
|
+
To install Trello Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@modelcontextprotocol/mcp-server-trello):
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
npx -y @smithery/cli install @modelcontextprotocol/mcp-server-trello --client claude
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
### Manual Installation
|
|
26
65
|
```bash
|
|
27
66
|
npm install @delorenj/mcp-server-trello
|
|
28
67
|
```
|
|
29
68
|
|
|
30
69
|
## Configuration
|
|
31
70
|
|
|
32
|
-
|
|
71
|
+
The server can be configured using environment variables. Create a `.env` file in the root directory with the following variables:
|
|
33
72
|
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
"command": "npx",
|
|
39
|
-
"args": ["-y", "@delorenj/mcp-server-trello"],
|
|
40
|
-
"env": {
|
|
41
|
-
"TRELLO_API_KEY": "your-api-key",
|
|
42
|
-
"TRELLO_TOKEN": "your-token",
|
|
43
|
-
"TRELLO_BOARD_ID": "your-board-id"
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
|
73
|
+
```env
|
|
74
|
+
TRELLO_API_KEY=your-api-key
|
|
75
|
+
TRELLO_TOKEN=your-token
|
|
76
|
+
TRELLO_BOARD_ID=your-board-id
|
|
48
77
|
```
|
|
49
78
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
-
|
|
53
|
-
-
|
|
54
|
-
- `TRELLO_BOARD_ID`: ID of the Trello board to interact with (found in board URL)
|
|
79
|
+
You can get these values from:
|
|
80
|
+
- API Key: https://trello.com/app-key
|
|
81
|
+
- Token: Generate using your API key
|
|
82
|
+
- Board ID: Found in the board URL
|
|
55
83
|
|
|
56
84
|
## Available Tools
|
|
57
85
|
|