-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathindex.ts
More file actions
22 lines (20 loc) · 678 Bytes
/
index.ts
File metadata and controls
22 lines (20 loc) · 678 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env node
/**
* Code-Reasoning MCP Server Entry Point
*
* This is the entry point for the Code-Reasoning MCP Server, which uses sequential thinking
* methodology to help solve programming problems step by step. It delegates to the main
* server implementation in src/server.ts.
*
* Note: The server registers the "code-reasoning" tool, specializing in programming tasks
* but is now referred to as "code-reasoning" in configuration and documentation.
*/
// Import and run the server
import('./src/server.js')
.then(module => {
module.runServer();
})
.catch(error => {
console.error('Error starting server:', error);
process.exit(1);
});