think-tool-mcp
Version:
An MCP server implementing the think tool for Claude and other LLMs
13 lines • 381 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const server_1 = require("./server");
async function main() {
const server = new server_1.ThinkToolServer();
await server.run();
}
main().catch(error => {
console.error('Error starting Think Tool server:', error);
process.exit(1);
});
//# sourceMappingURL=index.js.map