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 065e604 commit 31e820eCopy full SHA for 31e820e
packages/mcp-common/src/tools/worker.ts
@@ -37,6 +37,8 @@ export function registerWorkersTools(agent: CloudflareMcpAgent) {
37
const workers = results
38
.map((worker) => ({
39
name: worker.id,
40
+ // The API client doesn't know tag exists. The tag is needed in other places such as Workers Builds
41
+ script_id: z.object({ tag: z.string() }).parse(worker),
42
modified_on: worker.modified_on || null,
43
created_on: worker.created_on || null,
44
}))
0 commit comments