@andrea9293/mcp-gemini-prompt-enhancer
Version:
A Model Context Protocol (MCP) server that provides a prompt optimization service for Large Language Models (LLMs) using Google Gemini, with advanced prompt engineering thanks to 22365_3_Prompt_Engineering_v7.pdf authored by Lee Boonstra
21 lines (20 loc) • 515 B
JavaScript
import { startServer } from "./server/server.js";
// Start the server
async function main() {
try {
const server = await startServer();
server.start({
transportType: "stdio",
});
console.error("MCP Server running on stdio");
}
catch (error) {
console.error("Error starting MCP server:", error);
process.exit(1);
}
}
main().catch((error) => {
console.error("Fatal error in main():", error);
process.exit(1);
});