Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions mcp_server/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ NEO4J_PASSWORD=demodemo
OPENAI_API_KEY=your_openai_api_key_here
MODEL_NAME=gpt-4.1-mini

# Optional: OpenAI model name to use for embedding operations.
# EMBEDDER_MODEL_NAME=text-embedding-3-small

# Optional: Only needed for non-standard OpenAI endpoints
# OPENAI_BASE_URL=https://api.openai.com/v1

Expand Down
1 change: 1 addition & 0 deletions mcp_server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ The server uses the following environment variables:
- `OPENAI_BASE_URL`: Optional base URL for OpenAI API
- `MODEL_NAME`: OpenAI model name to use for LLM operations.
- `SMALL_MODEL_NAME`: OpenAI model name to use for smaller LLM operations.
- `EMBEDDER_MODEL_NAME`: OpenAI model name to use for embedding operations.
- `LLM_TEMPERATURE`: Temperature for LLM responses (0.0-2.0).
- `AZURE_OPENAI_ENDPOINT`: Optional Azure OpenAI LLM endpoint URL
- `AZURE_OPENAI_DEPLOYMENT_NAME`: Optional Azure OpenAI LLM deployment name
Expand Down