We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58b41ce commit c63cfabCopy full SHA for c63cfab
packages/mcp-common/src/tools/account.ts
@@ -20,6 +20,14 @@ export function registerAccountTools(agent: CloudflareMcpAgent) {
20
if (!b.created_on) return -1
21
return new Date(b.created_on).getTime() - new Date(a.created_on).getTime()
22
})
23
+ // Remove fields not needed by the LLM
24
+ .map((account) => {
25
+ return {
26
+ id: account.id,
27
+ name: account.name,
28
+ created_on: account.created_on,
29
+ }
30
+ })
31
32
return {
33
content: [
0 commit comments