package.jsonā¢1.87 kB
{
"name": "cut-copy-paste-mcp",
"version": "1.0.2",
"description": "MCP server providing cut, copy, paste, and undo operations for AI-assisted coding agents",
"main": "dist/server.js",
"type": "module",
"bin": {
"mcp-clipboard": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"clipboard",
"code-manipulation",
"ai-assistant",
"coding-agent"
],
"author": "Todd Anderson <todd@pr0j3c7t0dd.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Pr0j3c7t0dd-Ltd/cut-copy-paste-mcp.git"
},
"bugs": {
"url": "https://github.com/Pr0j3c7t0dd-Ltd/cut-copy-paste-mcp/issues"
},
"homepage": "https://github.com/Pr0j3c7t0dd-Ltd/cut-copy-paste-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.0",
"better-sqlite3": "^12.4.1",
"minimatch": "^10.0.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/jest": "^30.0.0",
"@types/minimatch": "5.1.2",
"@types/node": "^24.7.2",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"eslint": "^9.37.0",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0"
}
}