Files
lzwcai-mcp-server-package/lzwcai_mcp_api_converter/pyproject.toml
yuanzhipeng 8703a61198 feat(api-converter): 更新API配置并调整持久化令牌策略
- 替换api_config_9p04kww1pu.json为新的api_config_w8kgb73ib3.json配置文件,
  包含登录和单据查询两个API接口

- 修改AuthService类中的persist_token默认值为False,调整令牌持久化策略

- 移除旧的包信息文件、依赖文件和日志文件

- 更新API配置以支持金蝶K3Cloud系统的登录和单据查询功能
2026-03-06 16:19:07 +08:00

29 lines
856 B
TOML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
[project]
name = "lzwcai-mcp-api-converter"
version = "0.2.1"
description = "基于FastMCP框架的动态API工具服务器自动将企业业务API配置转换为MCP协议工具支持多种传输方式、企业认证和参数验证为AI助手提供标准化的业务接口访问能力。"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"dynaconf>=3.2.11",
"httpx>=0.28.1",
"jinja2==3.1.6",
"mcp[cli]>=1.8.0",
"requests>=2.31.0",
"pypinyin>=0.54.0",
]
[tool.setuptools]
packages = {find = {where = ["."], include = ["lzwcai_mcp_api_converter*"]}}
[tool.setuptools.package-data]
"lzwcai_mcp_api_converter.src" = ["api_config.json"]
[project.scripts]
lzwcai-mcp-api-converter = "lzwcai_mcp_api_converter.src.create_mcp:run_main"
[tool.hatch.build.targets.wheel]
packages = ["lzwcai_mcp_api_converter"]