We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/andrewlwn77/qdrant-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Embedding Provider Configuration
EMBEDDING_PROVIDER=openai # or sentence-transformers
EMBEDDING_MODEL=text-embedding-3-small
# OpenAI Configuration (required for OpenAI provider)
OPENAI_API_KEY=your-openai-api-key
# Qdrant Configuration
QDRANT_URL=http://localhost:6333
QDRANT_API_KEY= # Optional
COLLECTION_NAME=mcp_memory
# Search Configuration
DEFAULT_LIMIT=10
SCORE_THRESHOLD=0.0
# Sentence Transformers Configuration (optional)
DEVICE=cpu # or cuda, mps, etc.