Skip to content

Commit 0100f71

Browse files
authored
chore: bumping project dependencies (#66)
1 parent e8cf18d commit 0100f71

File tree

5 files changed

+269
-64
lines changed

5 files changed

+269
-64
lines changed

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -146,14 +146,11 @@ Key flags:
146146
git clone https://github.com/jonigl/ollama-mcp-bridge.git
147147
cd ollama-mcp-bridge
148148
149-
# Install dependencies using uv
150-
uv sync
151-
152149
# Start Ollama (if not already running)
153150
ollama serve
154151
155-
# Run the bridge (preferred)
156-
ollama-mcp-bridge
152+
# Run the bridge
153+
uv run ollama-mcp-bridge
157154
```
158155
159156
If you want to install the project in editable mode (for development):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dependencies = [
1515
"loguru~=0.7.3",
1616
"mcp>=1.9.4,<2.0.0",
1717
"packaging>=25.0",
18-
"typer~=0.20.0",
18+
"typer~=0.24.0",
1919
"uvicorn~=0.38.0",
2020
]
2121

src/ollama_mcp_bridge/api.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
from .utils import check_for_updates, configure_cors
1212
from . import __version__
1313

14-
1514
# Create FastAPI app
1615
app = FastAPI(
1716
title="Ollama MCP Bridge",

src/ollama_mcp_bridge/utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
import sys
1515
from typing import Dict, Any, Optional, Tuple
1616

17-
1817
_OLLAMA_PROXY_TIMEOUT_ENV = "OLLAMA_PROXY_TIMEOUT" # milliseconds
1918
_ollama_proxy_timeout_disabled_warned = False
2019

0 commit comments

Comments
 (0)