UNPKG

omnifocus-mcp-enhanced

Version:

🚀 NEW: Native Custom Perspective Access! Enhanced MCP server with OmniFocus custom perspective support, hierarchical task display, AI-optimized tool selection, and comprehensive task management

9 lines (8 loc) • 265 B
#!/usr/bin/env node // cli.cjs const path = require('path'); const childProcess = require('child_process'); const serverPath = path.join(__dirname, 'dist', 'server.js'); childProcess.spawn('node', ['--experimental-modules', serverPath], { stdio: 'inherit' });