@railway/mcp-server
Version: 
Official Railway MCP server
25 lines (24 loc) • 590 B
TypeScript
import { CreateProjectOptions } from "./projects-m8UEP4Aq.js";
import z from "zod";
//#region src/tools/create-project-and-link.d.ts
declare const createProjectAndLinkTool: {
  name: string;
  title: string;
  description: string;
  inputSchema: {
    projectName: z.ZodString;
    workspacePath: z.ZodString;
  };
  handler: ({
    projectName,
    workspacePath
  }: CreateProjectOptions) => Promise<{
    content: {
      type: "text";
      text: string;
    }[];
  }>;
};
//#endregion
export { createProjectAndLinkTool };
//# sourceMappingURL=create-project-and-link-BBlDXuVh.d.ts.map