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
62 lines (61 loc) • 2.67 kB
JavaScript
import { z } from 'zod';
import { addProject } from '../primitives/addProject.js';
export const schema = z.object({
name: z.string().describe("The name of the project"),
note: z.string().optional().describe("Additional notes for the project"),
dueDate: z.string().optional().describe("The due date of the project in ISO format (YYYY-MM-DD or full ISO date)"),
deferDate: z.string().optional().describe("The defer date of the project in ISO format (YYYY-MM-DD or full ISO date)"),
flagged: z.boolean().optional().describe("Whether the project is flagged or not"),
estimatedMinutes: z.number().optional().describe("Estimated time to complete the project, in minutes"),
tags: z.array(z.string()).optional().describe("Tags to assign to the project"),
folderName: z.string().optional().describe("The name of the folder to add the project to (will add to root if not specified)"),
sequential: z.boolean().optional().describe("Whether tasks in the project should be sequential (default: false)")
});
export async function handler(args, extra) {
try {
// Call the addProject function
const result = await addProject(args);
if (result.success) {
// Project was added successfully
let locationText = args.folderName
? `in folder "${args.folderName}"`
: "at the root level";
let tagText = args.tags && args.tags.length > 0
? ` with tags: ${args.tags.join(', ')}`
: "";
let dueDateText = args.dueDate
? ` due on ${new Date(args.dueDate).toLocaleDateString()}`
: "";
let sequentialText = args.sequential
? " (sequential)"
: " (parallel)";
return {
content: [{
type: "text",
text: `✅ Project "${args.name}" created successfully ${locationText}${dueDateText}${tagText}${sequentialText}.`
}]
};
}
else {
// Project creation failed
return {
content: [{
type: "text",
text: `Failed to create project: ${result.error}`
}],
isError: true
};
}
}
catch (err) {
const error = err;
console.error(`Tool execution error: ${error.message}`);
return {
content: [{
type: "text",
text: `Error creating project: ${error.message}`
}],
isError: true
};
}
}