@railway/mcp-server
Version:
Official Railway MCP server
23 lines (22 loc) • 503 B
TypeScript
import { GetServicesOptions } from "./services-C_g8DJ6S.js";
import z from "zod";
//#region src/tools/list-services.d.ts
declare const listServicesTool: {
name: string;
title: string;
description: string;
inputSchema: {
workspacePath: z.ZodString;
};
handler: ({
workspacePath
}: GetServicesOptions) => Promise<{
content: {
type: "text";
text: string;
}[];
}>;
};
//#endregion
export { listServicesTool };
//# sourceMappingURL=list-services-DF52MuP1.d.ts.map