forked from qpd-v/mcp-ragdocs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (22 loc) · 999 Bytes
/
Copy path.env.example
File metadata and controls
27 lines (22 loc) · 999 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Environment Variables for MCP RagDocs Server
# --- Qdrant Configuration ---
# URL of your running Qdrant instance
QDRANT_URL=http://localhost:6333
# --- Embedding Provider Configuration ---
# Choose your embedding provider: 'ollama' or 'openai'
EMBEDDING_PROVIDER=ollama
# --- Ollama Configuration (if EMBEDDING_PROVIDER=ollama) ---
# URL of your running Ollama instance
OLLAMA_URL=http://localhost:11434
# Optional: Specify the Ollama model for embeddings (defaults to nomic-embed-text)
# OLLAMA_EMBED_MODEL=nomic-embed-text
# --- OpenAI Configuration (if EMBEDDING_PROVIDER=openai) ---
# Your OpenAI API Key (required if using OpenAI)
# OPENAI_API_KEY=sk-...
# Optional: Specify the OpenAI model for embeddings (defaults to text-embedding-3-small)
# OPENAI_EMBED_MODEL=text-embedding-3-small
# --- Server Configuration (Optional) ---
# Default port for the MCP server (if run directly, not via stdio)
# PORT=6278
# Name of the Qdrant collection to use
# COLLECTION_NAME=rag_docs_collection