UNPKG

think-tool-mcp

Version:

An MCP server implementing the think tool for Claude and other LLMs

14 lines (10 loc) 271 B
#!/usr/bin/env node import { ThinkToolServer } from './server'; async function main() { const server = new ThinkToolServer(); await server.run(); } main().catch(error => { console.error('Error starting Think Tool server:', error); process.exit(1); });