Skip to content

Commit e6b351c

Browse files
committed
Release v1.0.2
1 parent eeb89e1 commit e6b351c

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@yepcode/mcp-server",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "MCP server for YepCode",
55
"main": "dist/index.js",
66
"type": "module",

src/tools/processes-tool-definitions.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -126,14 +126,13 @@ export const GetProcessVersionsSchema = z.object({
126126

127127
// Schema for execution settings
128128
export const ExecuteProcessSettingsSchema = z.object({
129-
agentPoolSlug: z
130-
.string()
131-
.optional()
132-
.describe("Agent pool where to execute"),
129+
agentPoolSlug: z.string().optional().describe("Agent pool where to execute"),
133130
callbackUrl: z
134131
.string()
135132
.optional()
136-
.describe("URL to receive execution results upon completion (success or failure)"),
133+
.describe(
134+
"URL to receive execution results upon completion (success or failure)"
135+
),
137136
});
138137

139138
// Schema for executing a process asynchronously

0 commit comments

Comments
 (0)