- 自动为生成的输入JSON Schema添加userId字段 - 从工具调用参数中提取userId并传递至API请求 - 新增userId日志打印与调试信息 - 修复API客户端无用的f-string日志调用 - 清理无用的类型导入项
39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "lzwcai-mcp-sqlexecutor"
|
|
version = "0.1.12"
|
|
description = "MCP server for executing business SQL queries with dynamic tool generation"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = {text = "MIT"}
|
|
authors = [
|
|
{name = "lzwcai", email = "your-email@example.com"},
|
|
]
|
|
keywords = ["mcp", "sql", "executor", "server"]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
]
|
|
dependencies = [
|
|
"httpx>=0.28.1",
|
|
"mcp[cli]>=1.10.1",
|
|
"pypinyin>=0.53.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
lzwcai-mcp-sqlexecutor = "lzwcai_mcp_sqlexecutor.main:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["lzwcai_mcp_sqlexecutor"]
|
|
|
|
[tool.hatch.build.targets.wheel.force-include]
|
|
"lzwcai_mcp_sqlexecutor/businessQueries.json" = "lzwcai_mcp_sqlexecutor/businessQueries.json"
|