package.json•1.37 kB
{
"name": "things-mcp-server",
"version": "1.0.0",
"description": "Model Context Protocol (MCP) server for interfacing with the Things app on macOS",
"main": "src/index.js",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "node src/index.js",
"test": "node examples/test-show-today.js",
"test:show": "node examples/test-show-today.js",
"test:add": "node examples/test-add-todo.js",
"test:search": "node examples/test-search.js",
"test:update": "node examples/test-update-todo.js",
"test:update-project": "node examples/test-update-project.js",
"test:complete": "node examples/test-complete-todo.js",
"test:navigation": "node examples/test-navigation.js",
"test:batch": "node examples/test-batch-operations.js",
"test:validation": "node examples/test-validation.js",
"test:advanced-search": "node examples/test-advanced-search.js",
"test:templates": "node examples/test-project-templates.js",
"test:advanced": "node examples/test-advanced-features.js"
},
"keywords": [
"mcp",
"things",
"task-management",
"macos",
"productivity"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"open": "^8.0.0"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": ""
}
}