-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
85 lines (74 loc) · 2.11 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import { Parser } from 'expr-eval';
import { FastMCP, type TextContent } from "fastmcp";
import { z } from "zod";
const server = new FastMCP({
name: "Cal Server",
version: "1.0.5",
});
server.addTool({
name: "cal",
description: "Use the expr-eval library to evaluate the input mathematical expression and return the result." +
"\n\nConstant \tDescription\n" +
"E \tThe value of Math.E from your JavaScript runtime\n" +
"PI \tThe value of Math.PI from your JavaScript runtime\n" +
"true \tLogical true value\n" +
"false \tLogical false value",
parameters: z.object({
exp: z.string(),
}),
execute: async (args) => {
return String(calculate(args.exp));
},
});
server.addTool({
name: "getDateByTimestamp",
description: "Convert the provided timestamp to date format",
parameters: z.object({
ts: z.number(),
}),
execute: async (args) => {
return String(getDateByTimestamp(args.ts));
},
});
server.addTool({
name: "batchGetDateByTimestamp",
description: "Batch convert the provided list of timestamps to date format, used for processing multiple timestamps",
parameters: z.object({
tsList: z.array(z.number()),
}),
execute: async (args) => {
let result = batchGetDateByTimestamp(args.tsList);
let ct: TextContent[] = result.map(item => ({
type: "text",
text: item
}))
return {
content: ct,
};
},
});
server.addTool({
name: "getNow",
description: "Get the current timestamp",
parameters: z.object({
}),
execute: async (args) => {
return String(getNow());
},
});
function calculate(expression: string): number {
const parser = new Parser();
return parser.evaluate(expression);
}
function getDateByTimestamp(ts: number) {
return new Date(ts).toLocaleString()
}
function batchGetDateByTimestamp(tsList: number[]) {
return tsList.map(timestamp => getDateByTimestamp(timestamp));
}
function getNow() {
return Date.now();
}
server.start({
transportType: "stdio",
});