We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/JasserAmri/jira-mcp-quicktext'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.env.example•2.48 kB
# JIRA MCP Server Configuration
# Copy this file to .env and fill in your values
# ==============================================
# JIRA CONNECTION SETTINGS
# ==============================================
# Jira instance type: "cloud" or "server" (Data Center)
JIRA_TYPE=server
# Jira base URL (without trailing slash)
# Cloud example: https://your-domain.atlassian.net
# Server example: https://jira.your-company.com
JIRA_BASE_URL=https://jira.your-company.com
# Jira user email
JIRA_USER_EMAIL=your-email@domain.com
# Jira API token or Personal Access Token (PAT)
# Cloud: Create at https://id.atlassian.com/manage-profile/security/api-tokens
# Server: Create PAT in your profile settings (Data Center 8.14+)
JIRA_API_TOKEN=your_api_token_here
# Authentication type: "basic" or "bearer"
# - basic: Username/password or API token (default)
# - bearer: Personal Access Token (PAT) for Data Center
JIRA_AUTH_TYPE=basic
# ==============================================
# TRANSPORT CONFIGURATION
# ==============================================
# Transport mode: "stdio" or "http"
# - stdio: For Claude Desktop and Cline (default)
# - http: For MCP Inspector, Postman, and HTTP-based clients
TRANSPORT_MODE=stdio
# HTTP transport port (only used when TRANSPORT_MODE=http)
# Default: 3000
HTTP_PORT=3000
# ==============================================
# SESSION MANAGEMENT (HTTP Transport Only)
# ==============================================
# Session timeout in milliseconds
# Default: 3600000 (1 hour)
# SESSION_TIMEOUT_MS=3600000
# Session cleanup interval in milliseconds
# Default: 300000 (5 minutes)
# SESSION_CLEANUP_INTERVAL_MS=300000
# ==============================================
# EXAMPLES
# ==============================================
# Example 1: Jira Cloud with STDIO transport (Claude Desktop)
# JIRA_TYPE=cloud
# JIRA_BASE_URL=https://yourcompany.atlassian.net
# JIRA_USER_EMAIL=you@company.com
# JIRA_API_TOKEN=ATATT3xFfGF0...
# JIRA_AUTH_TYPE=basic
# TRANSPORT_MODE=stdio
# Example 2: Jira Data Center with HTTP transport (MCP Inspector)
# JIRA_TYPE=server
# JIRA_BASE_URL=https://jira.company.com
# JIRA_USER_EMAIL=you@company.com
# JIRA_API_TOKEN=your_pat_token
# JIRA_AUTH_TYPE=bearer
# TRANSPORT_MODE=http
# HTTP_PORT=3000
# Example 3: Jira Server with Basic Auth
# JIRA_TYPE=server
# JIRA_BASE_URL=https://jira.company.com
# JIRA_USER_EMAIL=you@company.com
# JIRA_API_TOKEN=your_password
# JIRA_AUTH_TYPE=basic
# TRANSPORT_MODE=stdio