openapi-mcp-generator
Version:
Generates MCP server code from OpenAPI specifications
34 lines (33 loc) • 894 B
TypeScript
/**
* Generator for configuration files for MCP servers
*/
/**
* Generates the content of tsconfig.json for the MCP server
*
* @returns JSON string for tsconfig.json
*/
export declare function generateTsconfigJson(): string;
/**
* Generates the content of .gitignore for the MCP server
*
* @returns Content for .gitignore
*/
export declare function generateGitignore(): string;
/**
* Generates the content of .eslintrc.json for the MCP server
*
* @returns JSON string for .eslintrc.json
*/
export declare function generateEslintConfig(): string;
/**
* Generates the content of jest.config.js for the MCP server
*
* @returns Content for jest.config.js
*/
export declare function generateJestConfig(): string;
/**
* Generates the content of .prettierrc for the MCP server
*
* @returns JSON string for .prettierrc
*/
export declare function generatePrettierConfig(): string;