.env.example•1.22 kB
# Slack Lists MCP Server Configuration
# Copy this file to .env and fill in your actual values
# Required: Slack Bot Token
# Get this from your Slack app's OAuth & Permissions page
# Must have 'lists:read' and 'lists:write' scopes
SLACK_BOT_TOKEN=xoxb-your-bot-token-here
# Optional: Logging Configuration
# Set to DEBUG, INFO, WARNING, ERROR, or CRITICAL
LOG_LEVEL=INFO
# Optional: API Timeout (seconds)
# Default is 30 seconds
SLACK_API_TIMEOUT=30
# Optional: Default Rate Limit Delay (seconds)
# Used for bulk operations to respect Slack's rate limits
# Default is 1.2 seconds (allows ~50 requests per minute)
DEFAULT_RATE_LIMIT_DELAY=1.2
# Optional: Maximum Items Per Request
# Slack's maximum is 100, but you can set lower for performance
MAX_ITEMS_PER_REQUEST=100
# Example Slack List IDs (for reference)
# Replace with your actual list IDs
# EXAMPLE_PROJECT_LIST_ID=F1234ABCD
# EXAMPLE_TASKS_LIST_ID=F5678EFGH
# Example Column IDs (for reference)
# Replace with your actual column IDs from your lists
# EXAMPLE_TITLE_COLUMN_ID=Col10000000
# EXAMPLE_STATUS_COLUMN_ID=Col10000001
# EXAMPLE_ASSIGNEE_COLUMN_ID=Col10000002
# EXAMPLE_PRIORITY_COLUMN_ID=Col10000003
# EXAMPLE_DUE_DATE_COLUMN_ID=Col10000004