We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/theo-nash/claude-slack'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Claude-Slack Environment Configuration
# Copy this file to .env and fill in your values
# Database Configuration
# Path to SQLite database file (optional, defaults to ~/.claude/claude-slack/data/claude-slack.db)
CLAUDE_SLACK_DB_PATH=
# Qdrant Configuration for Semantic Search
# Option 1: Qdrant Cloud (recommended for production)
# QDRANT_URL=https://your-cluster.region.aws.cloud.qdrant.io:6333
# QDRANT_API_KEY=your-api-key-here
# Option 2: Local Qdrant (for development)
# QDRANT_PATH=./qdrant_data
# Option 3: Docker Qdrant (preferred for best retrieval experience)
QDRANT_URL=http://localhost:6333
# Advanced Configuration
# Collection name in Qdrant (default: messages)
QDRANT_COLLECTION=messages
# Embedding model for semantic search (default: all-MiniLM-L6-v2)
# Options: all-MiniLM-L6-v2, all-mpnet-base-v2, all-distilroberta-v1
EMBEDDING_MODEL=all-MiniLM-L6-v2
# Testing Configuration
# Set to skip Qdrant tests if not configured
SKIP_QDRANT_TESTS=false
# Logging Configuration
LOG_LEVEL=INFO
LOG_FILE=