UNPKG

letter-to-god-mcp-server

Version:

A Model Context Protocol (MCP) server that provides personalized Bible guidance and mentorship through AI integration with OpenAI's ChatGPT

17 lines (16 loc) • 630 B
// Simple test to verify the server can be imported and initialized import('./index.js') .then(() => { console.log('āœ… Server imports successfully'); console.log('āœ… OpenAI integration configured'); console.log('āœ… MCP server structure is valid'); console.log('\nšŸŽ‰ Your Bible Expert MCP Server is ready to use!'); console.log('\nTo run the server:'); console.log('node index.js'); console.log('\nThe server will wait for MCP client connections via stdio.'); process.exit(0); }) .catch((error) => { console.error('āŒ Server test failed:', error.message); process.exit(1); });