forked from delorenj/mcp-server-trello
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
39 lines (39 loc) · 1.12 KB
/
Copy pathserver.json
File metadata and controls
39 lines (39 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-16/server.schema.json",
"name": "io.github.delorenj/mcp-server-trello",
"description": "MCP server for Trello boards with rate limiting, type safety, and comprehensive API integration.",
"status": "active",
"websiteUrl": "https://delorenj.github.io/mcp-server-trello",
"repository": {
"url": "https://github.com/delorenj/mcp-server-trello",
"source": "github"
},
"version": "1.5.6",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "@delorenj/mcp-server-trello",
"version": "1.5.6",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "TRELLO_API_KEY",
"description": "Your Trello API key",
"isRequired": true,
"format": "string",
"isSecret": true
},
{
"name": "TRELLO_TOKEN",
"description": "Your Trello token",
"isRequired": true,
"format": "string",
"isSecret": true
}
]
}
]
}