Skip to content

Commit 12529fb

Browse files
author
Simba Khadder
committed
Fix broken dependency
1 parent 3e7dd3b commit 12529fb

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

TODO

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Figure out if that sqllite thing I do should be moved elsewhere?
2+
Check if cache still works
3+
Check if elicitation still works
4+
Check if sampling still works
5+
Get EnrichContext to work again.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ dev = [
7070
"aiosqlite>=0.19.0",
7171
"sqlalchemy>=2.0.0",
7272
"sqlalchemy2-stubs>=0.0.2a5",
73-
"mcp_use>=1.0.0",
73+
"mcp_use>=1.0.0,!=1.4.1",
7474
]
7575
sqlalchemy = [
7676
"sqlalchemy>=2.0.0",
@@ -81,7 +81,7 @@ all = [
8181
"sqlalchemy>=2.0.0",
8282
"sqlalchemy2-stubs>=0.0.2a5",
8383
"aiosqlite>=0.19.0",
84-
"mcp_use>=1.0.0",
84+
"mcp_use>=1.0.0,!=1.4.1",
8585
]
8686

8787
[tool.setuptools.packages.find]

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pytest-cov>=5.0.0
88
fakeredis>=2.0.0
99

1010
# MCP client utilities used by example tests
11-
mcp_use>=1.0.0
11+
mcp_use>=1.0.0,!=1.4.1
1212

1313
# Code quality
1414
ruff>=0.8.0

src/enrichmcp/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
# Public exports
2424
from typing import TYPE_CHECKING
2525

26-
from fastmcp import Context
2726
from mcp.types import ModelPreferences
2827

2928
from .app import EnrichMCP
@@ -63,7 +62,6 @@
6362
has_sqlalchemy = True
6463

6564
__all__ = [
66-
"Context",
6765
"CursorParams",
6866
"CursorResult",
6967
"DataModelSummary",

0 commit comments

Comments
 (0)