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
JavaScript
// 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);
});