taobao-mcp-demo
Version:
淘宝MCP演示服务器 - 提供基础工具和资源
17 lines (16 loc) • 392 B
JavaScript
import { z } from "zod";
// 减法工具
export const subTool = {
name: "sub",
config: {
title: "减法工具",
description: "计算两个数字的差",
inputSchema: {
a: z.number().describe("被减数"),
b: z.number().describe("减数")
}
},
handler: async ({ a, b }) => ({
content: [{ type: "text", text: String(a - b) }]
})
};