taobao-mcp-demo
Version:
淘宝MCP演示服务器 - 提供基础工具和资源
24 lines (23 loc) • 541 B
JavaScript
import { z } from "zod";
// 除法工具
export const divTool = {
name: "div",
config: {
title: "除法工具",
description: "计算两个数字的商",
inputSchema: {
a: z.number().describe("被除数"),
b: z.number().describe("除数")
}
},
handler: async ({ a, b }) => {
if (b === 0) {
return {
content: [{ type: "text", text: "错误:除数不能为零" }]
};
}
return {
content: [{ type: "text", text: String(a / b) }]
};
}
};