Skip to content

Commit 05bbd6f

Browse files
committed
fix: base_url missing
1 parent e6d837e commit 05bbd6f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/asktable_mcp_server/sse_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ def main(base_url: str = None, path_prefix: str = "", port: int = 8095):
213213
global mcp
214214

215215
# 创建 MCP 服务器实例
216-
mcp = create_mcp_server(path_prefix)
216+
mcp = create_mcp_server(path_prefix=path_prefix, base_url=base_url)
217217

218218
# 记录配置信息
219219
logger.info("启动 SSE 服务器")

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.8
1+
0.2.9

0 commit comments

Comments
 (0)