package.jsonā¢2.19 kB
{
"name": "@ainote/mcp",
"version": "1.0.2",
"description": "MCP server for AI Note - Connect Claude Desktop to your AI Note tasks",
"main": "index.js",
"type": "module",
"bin": {
"ainote-mcp": "./index.js",
"ainote-mcp-http": "./server.js"
},
"scripts": {
"start": "node index.js",
"start:http": "node server.js",
"test": "NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:coverage": "NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"test:verbose": "NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --verbose"
},
"keywords": [
"mcp",
"modelcontextprotocol",
"model-context-protocol",
"claude",
"claude-desktop",
"ainote",
"ai-note",
"tasks",
"task-management",
"todo",
"productivity",
"api",
"integration"
],
"author": "AI Note Team <support@ainote.app>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ainote-dev/ainote-mcp.git"
},
"bugs": {
"url": "https://github.com/ainote-dev/ainote-mcp/issues"
},
"homepage": "https://github.com/ainote-dev/ainote-mcp#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.6.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"axios-mock-adapter": "^1.22.0",
"jest": "^29.7.0"
},
"jest": {
"transform": {},
"testEnvironment": "node",
"collectCoverageFrom": [
"index.js",
"server.js",
"lib/**/*.js",
"!node_modules/**"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov",
"html"
],
"testMatch": [
"**/__tests__/**/*.test.js",
"**/?(*.)+(spec|test).js"
]
},
"files": [
"index.js",
"server.js",
"lib",
"README.md",
"README-ko.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}