Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@yepcode/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@yepcode/mcp-server - npm Package Compare versions

Comparing version
1.0.1
to
1.0.2
+8
-15
dist/tools/processes-tool-definitions.d.ts

@@ -94,3 +94,3 @@ import { z } from "zod";

identifier: z.ZodString;
parameters: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>>;
parameters: z.ZodOptional<z.ZodAny>;
tag: z.ZodOptional<z.ZodString>;

@@ -116,3 +116,3 @@ comment: z.ZodOptional<z.ZodString>;

} | undefined;
parameters?: string | Record<string, any> | undefined;
parameters?: any;
tag?: string | undefined;

@@ -127,3 +127,3 @@ initiatedBy?: string | undefined;

} | undefined;
parameters?: string | Record<string, any> | undefined;
parameters?: any;
tag?: string | undefined;

@@ -134,3 +134,3 @@ initiatedBy?: string | undefined;

identifier: z.ZodString;
parameters: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>>;
parameters: z.ZodOptional<z.ZodAny>;
tag: z.ZodOptional<z.ZodString>;

@@ -156,3 +156,3 @@ comment: z.ZodOptional<z.ZodString>;

} | undefined;
parameters?: string | Record<string, any> | undefined;
parameters?: any;
tag?: string | undefined;

@@ -167,3 +167,3 @@ initiatedBy?: string | undefined;

} | undefined;
parameters?: string | Record<string, any> | undefined;
parameters?: any;
tag?: string | undefined;

@@ -457,7 +457,4 @@ initiatedBy?: string | undefined;

parameters: {
oneOf: {
type: string;
}[];
type: string[];
description: string;
type?: undefined;
};

@@ -522,7 +519,4 @@ tag: {

parameters: {
oneOf: {
type: string;
}[];
type: string[];
description: string;
type?: undefined;
};

@@ -589,3 +583,2 @@ tag: {

description: string;
oneOf?: undefined;
};

@@ -592,0 +585,0 @@ type: {

@@ -99,6 +99,3 @@ import { z } from "zod";

export const ExecuteProcessSettingsSchema = z.object({
agentPoolSlug: z
.string()
.optional()
.describe("Agent pool where to execute"),
agentPoolSlug: z.string().optional().describe("Agent pool where to execute"),
callbackUrl: z

@@ -115,3 +112,3 @@ .string()

parameters: z
.union([z.string(), z.record(z.any())])
.any()
.optional()

@@ -139,3 +136,3 @@ .describe("Process parameters (JSON string or object). Must match the process parameter schema."),

parameters: z
.union([z.string(), z.record(z.any())])
.any()
.optional()

@@ -344,3 +341,3 @@ .describe("Process parameters (JSON string or object). Must match the process parameter schema."),

parameters: {
oneOf: [{ type: "string" }, { type: "object" }],
type: ["string", "object"],
description: "Process parameters (JSON string or object). Must match the process parameter schema.",

@@ -390,3 +387,3 @@ },

parameters: {
oneOf: [{ type: "string" }, { type: "object" }],
type: ["string", "object"],
description: "Process parameters (JSON string or object). Must match the process parameter schema.",

@@ -393,0 +390,0 @@ },

{
"name": "@yepcode/mcp-server",
"version": "1.0.1",
"version": "1.0.2",
"description": "MCP server for YepCode",

@@ -5,0 +5,0 @@ "main": "dist/index.js",