chore: @modelcontextprotocol/sdk als Abhängigkeit hinzugefügt

This commit is contained in:
sebseb7
2026-04-05 03:20:20 +02:00
parent 38e702ec2f
commit 863f45f666
8 changed files with 539 additions and 10 deletions

11
mcpServer.js Executable file
View File

@@ -0,0 +1,11 @@
#!/home/seb/.nvm/versions/node/v22.15.1/bin/node
import dotenv from 'dotenv';
import { startMCPServer } from './src/mcpServer.js';
// Load environment variables from .env file
dotenv.config();
startMCPServer().catch((error) => {
console.error('Failed to start MCP server:', error);
process.exit(1);
});