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
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Note: You cannot provide both `QDRANT_URL` and `QDRANT_LOCAL_PATH` at the same t

### FastMCP Environment Variables

Since `mcp-server-qdrant` is based on FastMCP, it also supports all the FastMCP environment variables. The most
Since `mcp-server-qdrant` is based on FastMCP, it also supports all the [FastMCP environment variables](https://gofastmcp.com/more/settings). The most
important ones are listed below:

| Environment Variable | Description | Default Value |
Expand All @@ -65,10 +65,7 @@ important ones are listed below:
| `FASTMCP_LOG_LEVEL` | Set logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL) | `INFO` |
| `FASTMCP_HOST` | Host address to bind the server to | `127.0.0.1` |
| `FASTMCP_PORT` | Port to run the server on | `8000` |
| `FASTMCP_WARN_ON_DUPLICATE_RESOURCES` | Show warnings for duplicate resources | `true` |
| `FASTMCP_WARN_ON_DUPLICATE_TOOLS` | Show warnings for duplicate tools | `true` |
| `FASTMCP_WARN_ON_DUPLICATE_PROMPTS` | Show warnings for duplicate prompts | `true` |
| `FASTMCP_DEPENDENCIES` | List of dependencies to install in the server environment | `[]` |
| `FASTMCP_SERVER_DEPENDENCIES` | List of dependencies to install in the server environment | `[]` |

## Installation

Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
dependencies = [
"fastembed>=0.6.0",
"qdrant-client>=1.12.0",
"pydantic>=2.10.6,<2.12.0",
"fastmcp==2.7.0",
"fastembed>=0.8.0",
"qdrant-client>=1.17.0",
"pydantic>=2.12.0",
"fastmcp>=3.0.0,<4",
]

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.uv]
dev-dependencies = [
[dependency-groups]
dev = [
"ipdb>=0.13.13",
"isort>=6.0.1",
"mypy>=1.9.0",
Expand Down
Loading
Loading