package.json•3.33 kB
{
"name": "joplin-mcp-server",
"version": "1.1.1",
"description": "MCP server for Joplin",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"joplin-mcp-server": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"serve": "pnpm build && node dist/index.js",
"serve:http": "pnpm build && node dist/index.js --transport http",
"serve:dev": "tsup --watch --onSuccess \"node dist/index.js\"",
"serve:dev:http": "tsup --watch --onSuccess \"node dist/index.js --transport http\"",
"clean": "rm -rf dist coverage .vitest-cache",
"clean:all": "pnpm run clean && rm -rf node_modules pnpm-lock.yaml",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:manual:search": "tsx tests/manual/search-notes.test.ts",
"test:manual:read-note": "tsx tests/manual/read-note.test.ts",
"test:manual:create-note": "tsx tests/manual/create-note.test.ts",
"test:manual:create-folder": "tsx tests/manual/create-folder.test.ts",
"test:manual:edit-note": "tsx tests/manual/edit-note.test.ts",
"test:manual:edit-folder": "tsx tests/manual/edit-folder.test.ts",
"test:manual:delete-note": "tsx tests/manual/delete-note.test.ts",
"test:manual:delete-folder": "tsx tests/manual/delete-folder.test.ts",
"test:manual:list-notebooks": "tsx tests/manual/list-notebooks.test.ts",
"audit": "pnpm audit --audit-level moderate",
"audit:fix": "pnpm audit --fix",
"outdated": "pnpm outdated",
"ci": "pnpm run lint && pnpm run typecheck && pnpm run format:check && pnpm run test:coverage && pnpm run build",
"check": "pnpm run ci",
"prepublishOnly": "pnpm run ci"
},
"keywords": [
"mcp",
"joplin"
],
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"author": "Jordan Burke <jordan.burke@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jordanburke/joplin-mcp-server.git"
},
"bugs": {
"url": "https://github.com/jordanburke/joplin-mcp-server/issues"
},
"homepage": "https://github.com/jordanburke/joplin-mcp-server#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.2",
"axios": "^1.11.0",
"dotenv": "^17.2.1",
"fastmcp": "^3.14.4",
"zod": "^4.0.17"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/node": "^22.17.1",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"concurrently": "^9.2.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"tsx": "^4.20.4",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
}