Skip to content

Commit fe8c7e1

Browse files
committed
fix install command
1 parent 7411486 commit fe8c7e1

File tree

3 files changed

+82
-9
lines changed

3 files changed

+82
-9
lines changed

pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "openai-websearch-mcp"
3-
version = "0.2.2"
3+
version = "0.3.1"
44
description = "using openai websearch as mcp server"
55
readme = "README.md"
66
requires-python = ">=3.10"
@@ -9,7 +9,8 @@ dependencies = [
99
"pydantic==2.10.6",
1010
"mcp==1.3.0",
1111
"tzdata==2025.1",
12-
"openai==1.66.2"
12+
"openai==1.66.2",
13+
"typer==0.15.2"
1314
]
1415

1516

@@ -28,5 +29,6 @@ dev-dependencies = [
2829
"pydantic==2.10.6",
2930
"mcp==1.3.0",
3031
"tzdata==2025.1",
31-
"openai==1.66.2"
32+
"openai==1.66.2",
33+
"typer==0.15.2"
3234
]

src/openai_websearch_mcp/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def install() -> None:
114114
"""Install a current server in the Claude desktop app.
115115
"""
116116

117-
name = "openapi-websearch-mcp"
117+
name = "openai-websearch-mcp"
118118

119119
env_dict = {}
120120
local_bin = Path(Path.home(), ".local", "bin")
@@ -135,8 +135,8 @@ def install() -> None:
135135
# print("------------update_claude_config", command, args, env_dict)
136136

137137
if update_claude_config(
138-
command,
139138
name,
139+
command,
140140
args,
141141
env_vars=env_dict,
142142
):

uv.lock

Lines changed: 75 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)