Trilix-Atlassian-MCP-Server
Verified Safeby pranshuiu
Overview
The Trilix Atlassian MCP Server acts as a trusted intermediary between AI agents (like ChatGPT, Claude) and Atlassian APIs (Confluence, Jira), providing multi-tenant access to multiple Atlassian organizations with normalized, PHI-safe data exposure.
Installation
docker-compose up -d && cd cmd/confluence-service && go run main.go (in Terminal 1) && cd cmd/jira-service && go run main.go (in Terminal 2) && cd cmd/mcp-server && go run main.go (in Terminal 3)Environment Variables
- RABBITMQ_HOST
- RABBITMQ_VHOST
- RABBITMQ_USER
- RABBITMQ_PASSWORD
- DATABASE_URL
- API_KEY_ENCRYPTION_KEY
- WORKSPACES_FILE
- CLERK_SECRET_KEY
- CLERK_PUBLISHABLE_KEY
- LOG_LEVEL
- ENVIRONMENT
Security Notes
The system demonstrates strong security practices for handling sensitive Atlassian API tokens. Tokens are encrypted at rest using AES-256-GCM via a password-derived key (PBKDF2) and stored in PostgreSQL. There is an explicit rule (and code adherence) to never expose API tokens in logs or error messages. Optional Clerk integration provides user authentication. Local development setup uses default 'secret' passwords for RabbitMQ and PostgreSQL in docker-compose, but environment variables are used for production-grade configurations, mitigating hardcoded secrets in deployment. No 'eval' or other obviously malicious patterns were found.
Similar Servers
atlassian-mcp-server
The Atlassian Rovo MCP Server acts as a cloud-based bridge, connecting Atlassian Cloud sites (Jira, Compass, Confluence) with external AI tools and IDEs to enable real-time data interaction and automation of development workflows.
atlassian-mcp-server
Enables AI agents to interact with Atlassian Cloud services (Jira, Confluence, Jira Service Management) for work documentation, issue management, and context understanding through a unified API.
jira-mcp-server
A server component for Atlassian's MCP (Most Capable Person) platform, likely integrating with or managing Jira instances.
confluence_mcp_server
Provides a Model Context Protocol (MCP) server for AI agents to interact with Confluence DataCenter/Server content, manage pages, spaces, users, search using CQL, and perform bidirectional Markdown conversions.