@railway/mcp-server
Version:
Official Railway MCP server
25 lines (24 loc) • 561 B
TypeScript
import { LinkServiceOptions } from "./services-C_g8DJ6S.js";
import z from "zod";
//#region src/tools/link-service.d.ts
declare const linkServiceTool: {
name: string;
title: string;
description: string;
inputSchema: {
workspacePath: z.ZodString;
serviceName: z.ZodOptional<z.ZodString>;
};
handler: ({
workspacePath,
serviceName
}: LinkServiceOptions) => Promise<{
content: {
type: "text";
text: string;
}[];
}>;
};
//#endregion
export { linkServiceTool };
//# sourceMappingURL=link-service-CUMRe005.d.ts.map