Token导航 LogoToken导航TokenDH.com
Trello MCP Server logo
开发工具未说明官方级别未说明来源级核验

Trello MCP Server

MCP Server

TypeScript implementation of a Model Context Protocol (MCP) server for Trello integration

工具数

4

提示词数

0

GitHub Stars

1

资源数

0
JavaScriptClaude开发工具ClaudeCline

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

andypost

提供方

andypost

最后核验

2026/5/18 02:16

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

详细介绍

Trello MCP服务器(TypeScript)

用于Trello集成的模型上下文协议(MCP)服务器的TypeScript实现,为AI助手提供与Trello板、列表和卡片交互的工具。

特性

  • 通过MCP工具全面集成Trello API
  • 异步操作以获得更好的性能
  • 使用TypeScript实现类型安全
  • 全面的错误处理
  • 基于环境的配置

先决条件

  • Node.js 18.x或更高版本
  • npm或纱线
  • Trello API证书

安装

# Install dependencies
make install

配置

创建一个 .env 根目录中的文件,其中包含您的Trello凭据:

TRELLO_API_KEY=your_api_key
TRELLO_TOKEN=your_token

可用命令

# Install dependencies
make install

# Build the project
make build

# Start the server
make start

# Clean build artifacts
make clean

# Run linter
make lint

MCP工具

get_boards

检索经过身份验证的用户的所有Trello板。

// No input parameters required

get_lists

从指定板获取所有列表。

{
  "request": {
    "board_id": string // ID of the board
  }
}

get_card

从板或特定列表中获取卡片。

{
  "request": {
    "board_id": string,    // ID of the board
    "list_id"?: string     // Optional: ID of a specific list
  }
}

get_card_details

检索特定卡的详细信息。

{
  "request": {
    "card_id": string      // ID of the card
  }
}

发展

该项目使用TypeScript来实现类型安全和更好的开发人员体验。源代码组织如下:

  • src/index.ts -主服务器入口点
  • src/trello-client.ts -Trello API客户端实现
  • src/types.ts -TypeScript类型定义

建筑

该项目使用TypeScript编译器构建:

# Build the project
make build

# The output will be in the build/ directory

错误处理

服务器为以下对象实现了全面的错误处理:

  • API身份验证错误
  • 速率限制
  • 网络问题
  • 无效的请求参数

贡献

  1. 分叉存储库
  2. 创建功能分支(git checkout -b feature/amazing-feature)
  3. 提交您的更改(git commit -m 'Add some amazing feature')
  4. 推到分支(git push origin feature/amazing-feature)
  5. 打开拉取请求

与Cline一起使用

要将此MCP服务器与Cline一起使用,请将以下配置添加到Cline MCP设置文件中(~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json):

{
  "mcpServers": {
    "trello-ts": {
      "command": "node",
      "args": ["/path/to/mcp-server-ts-trello/build/index.js"],
      "env": {
        "TRELLO_API_KEY": "your_api_key",
        "TRELLO_TOKEN": "your_token"
      }
    }
  }
}

添加配置并重新启动Cline后,您可以使用以下MCP工具:

  • get_boards:列出所有Trello板
  • get_lists:从板上获取列表
  • get_cards:从黑板或列表中获取卡片
  • get_card_details:获取详细的卡信息

许可证

ISC许可证-有关详细信息,请参阅许可证文件

目录标签

目录标签

JavaScriptClaude开发工具developer-toolsmcp-servertrello-integrationtypescriptTrello集成本地部署TypeScript开发AI助手工具项目管理

支持客户端

ClaudeCline

接入字段

传输方式(transport,传输协议)

未说明

鉴权方式(authType,认证方式)

none

部署方式(deploymentType,部署类型)

remote-capable

工具数量(toolCount,工具数)

4

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

未说明noneremote-capable

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

仍需确认:installCommand

来源信息

继续浏览同类 MCP