feat: 新增HTML转URL工具服务,优化API转换器配置

- 新增lzwcai_mcpskills_visual2url项目,提供本地HTML文件、HTML代码转可访问URL的MCP工具
- 重构lzwcai_mcp_api_converter配置加载逻辑,取消内存缓存复用,强制拉取最新配置并新增缓存降级容错机制
- 升级lzwcai_mcp_api_converter至0.2.5、项目模板至0.1.3
- 更新各示例项目的环境配置参数与模板工具配置
This commit is contained in:
2026-05-25 11:48:12 +08:00
parent 992d97c0a4
commit fb61ae27cf
28 changed files with 1024 additions and 182 deletions

View File

@@ -1,10 +1,10 @@
[
{
"id": "example_tool_001",
"name": "example_hello_world",
"description": "示例工具 - Hello World",
"name": "example_hello_world2",
"description": "示例工具 - Hello World2",
"toolPrompt": "这是一个示例工具,用于演示 MCP 工具的基本结构",
"sqlParams": "[{\"type\":\"string\",\"name\":\"name\",\"displayName\":\"名称\",\"maxLength\":100,\"defaultValue\":\"World\",\"required\":true}]"
"sqlParams": "[{\"type\":\"string\",\"name\":\"name2\",\"displayName\":\"名称\",\"maxLength\":100,\"defaultValue\":\"World\",\"required\":true}]"
},
{
"id": "example_tool_002",

View File

@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "lzwcai_mcpskills_template"
version = "0.1.1"
version = "0.1.3"
description = "MCP Server 模板项目 - 用于快速创建新的 MCP 服务"
readme = "README.md"
requires-python = ">=3.10"