Trello-Claude интеграция
Интеграция Claude с Trello через MCP Server на Smithery.ai
Overview
Trello-Claude Integration is a project that connects the Claude language model with the Trello project management platform through an MCP Server based on Smithery.ai.
To use this integration, follow the setup instructions provided in the documentation to configure the MCP Server and connect it with Trello and Claude.
- Create and edit tasks in Trello using natural language commands. - Assign tasks to team members. - Set deadlines for task completion. - Manage tags and lists within Trello. - Format project descriptions effectively.
- Automating task management in Trello using voice or text commands.
- Streamlining project updates and task assignments through natural language.
- Enhancing team collaboration by integrating AI capabilities into project management.
Add to your AI client
Use these steps to connect Trello-Claude интеграция in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"trello-claude-integration-inakitka": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-trello-claude-integration-inakitka"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"trello-claude-integration-inakitka": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-trello-claude-integration-inakitka"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"trello-claude-integration-inakitka": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-trello-claude-integration-inakitka"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"trello-claude-integration-inakitka": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-trello-claude-integration-inakitka"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"trello-claude-integration-inakitka": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-trello-claude-integration-inakitka"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"trello-claude-integration-inakitka": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-trello-claude-integration-inakitka"
]
}
}
}FAQ
Can I use Claude to manage all my Trello tasks?
Yes! Claude can handle various task management functions in Trello.
Is there a guide for setting up the integration?
Yes! Detailed setup instructions are available in the documentation.
What technologies are used in this integration?
The integration uses Claude API, Smithery.ai for MCP Server, and Trello API for task management.