feat(lzwcai-agile-db): 更新AgileDB技能至v0.4.2版本并扩展工具集
- 将技能版本从0.2.0升级至0.4.2 - 工具数量从33个扩展至57个,新增数据源管理、AI训练、库表关联配置等功能 - 新增MQTT字段关联同步模块(8个工具)和库表关联配置(3个工具) - 添加重要的契约提示和安全确认原则,包括target默认值、alter_table操作限制等 - 修正工具参数说明,如execute_sql的executableSql改为sql,参数结构优化 - 增强安全机制,明确危险操作的用户确认流程和目标资源选择规则 - 更新README.md中的工具数量统计和功能描述
This commit is contained in:
41
lzwcai_mcp_agile_db_third/pyproject.toml
Normal file
41
lzwcai_mcp_agile_db_third/pyproject.toml
Normal file
@@ -0,0 +1,41 @@
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[project]
|
||||
name = "lzwcai-mcp-agile-db-third"
|
||||
version = "0.1.5"
|
||||
description = "MCP server for Agile DB third-party datasource APIs"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.12"
|
||||
license = {text = "MIT"}
|
||||
authors = [
|
||||
{name = "lzwcai", email = "your-email@example.com"},
|
||||
]
|
||||
keywords = ["mcp", "datasource", "database", "agile-db"]
|
||||
classifiers = [
|
||||
"Development Status :: 3 - Alpha",
|
||||
"Intended Audience :: Developers",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
]
|
||||
dependencies = [
|
||||
"httpx>=0.28.1",
|
||||
"mcp[cli]>=1.10.1",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
lzwcai-mcp-agile-db-third = "lzwcai_mcp_agile_db_third.main:main"
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["lzwcai_mcp_agile_db_third"]
|
||||
|
||||
[tool.hatch.build.targets.wheel.force-include]
|
||||
|
||||
[tool.hatch.build]
|
||||
exclude = [
|
||||
"lzwcai_mcp_agile_db_third/logs/**",
|
||||
"**/.__pycache__/**",
|
||||
"lzwcai_mcp_agile_db_third/.gitignore",
|
||||
".venv/**",
|
||||
]
|
||||
Reference in New Issue
Block a user