@railway/mcp-server
Version:
Official Railway MCP server
25 lines (24 loc) • 582 B
TypeScript
import { LinkEnvironmentOptions } from "./environments-ZIuhjWhs.js";
import z from "zod";
//#region src/tools/link-environment.d.ts
declare const linkEnvironmentTool: {
name: string;
title: string;
description: string;
inputSchema: {
workspacePath: z.ZodString;
environmentName: z.ZodString;
};
handler: ({
workspacePath,
environmentName
}: LinkEnvironmentOptions) => Promise<{
content: {
type: "text";
text: string;
}[];
}>;
};
//#endregion
export { linkEnvironmentTool };
//# sourceMappingURL=link-environment-Bug_hf-D.d.ts.map