Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
39 changes: 22 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,53 +4,58 @@ build-backend = "hatchling.build"

[project]
name = "keboola-mcp-server"
version = "1.33.0"
version = "1.34.0"
description = "MCP server for interacting with Keboola Connection"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "Keboola", email = "[email protected]" }]
dependencies = [
"fastmcp == 2.13.0.2",
"mcp == 1.21.0",
# Using fastmcp 2.13.1 instead of 2.13.3 due to bug in 2.13.2+ (KeyError: 'ctx')
# see https://github.com/jlowin/fastmcp/issues/2524
# fastmcp==2.13.3 requires mcp<1.23 due to compatibility reasons
# fastmcp==2.14 will fix the incompatibilities and require mcp>=1.23
# see https://github.com/jlowin/fastmcp/releases/tag/v2.13.3
"fastmcp == 2.13.1",
"mcp == 1.22.0",
"httpx ~= 0.28",
"jsonpath-ng ~= 1.7",
"jsonschema ~= 4.25",
"pyjwt ~= 2.10",
"json-log-formatter ~= 1.1",
"cryptography ~= 45.0",
"cryptography ~= 46.0",
"pydantic ~= 2.12",
"sqlglot ~= 25.0",
"sqlglot ~= 28.1",
"toon-format ~= 0.9.0b1",
]
[project.optional-dependencies]
codestyle = [
"black ~= 25.9",
"isort ~= 6.1",
"black ~= 25.11",
"isort ~= 7.0",
"flake8 ~= 7.3",
"Flake8-pyproject ~= 1.2",
"flake8-bugbear ~= 24.12",
"flake8-bugbear ~= 25.11",
"flake8-colors ~= 0.1",
"flake8-isort ~= 6.1",
"flake8-pytest-style ~= 2.1",
"flake8-isort ~= 7.0",
"flake8-pytest-style ~= 2.2",
"flake8-quotes ~= 3.4",
"flake8-typing-imports ~= 1.16",
"flake8-typing-imports ~= 1.17",
"pep8-naming ~= 0.15",
]
tests = [
"pytest ~= 8.4",
"pytest-asyncio ~= 0.26",
"pytest-cov ~= 6.3",
"pytest-datadir ~= 1.6.1",
"pytest ~= 9.0",
"pytest-asyncio ~= 1.3",
"pytest-cov ~= 7.0",
"pytest-datadir ~= 1.8",
"pytest-mock ~= 3.15",
"python-dateutil ~= 2.9",
"python-dotenv ~= 1.1",
"python-dotenv ~= 1.2",
]
integtests = [
"kbcstorage ~= 0.9",
]
dev = [
"tox ~= 4.27",
"tox ~= 4.32",
]

[project.scripts]
Expand Down
Loading