This commit is contained in:
张威33321
2026-09-08 20:36:25 +08:00
parent 6296202eb0
commit 1a6ba86f04
13 changed files with 314 additions and 104 deletions

View File

@@ -0,0 +1,14 @@
// Package system 承载 aio-mcp 自身的系统类工具:健康检查、协议演示等。
package system
import (
"github.com/modelcontextprotocol/go-sdk/mcp"
"aio-mcp/internal/deps"
)
// Register 注册本组全部工具。
func Register(s *mcp.Server, _ *deps.Deps) {
registerPing(s)
registerEcho(s)
}