package.json•829 B
{
"name": "puppeteer-mcp",
"version": "1.0.0",
"description": "A Model Context Protocol server for screenshot capabilities using Puppeteer",
"type": "module",
"bin": {
"puppeteer-mcp": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && chmod +x build/index.js",
"watch": "tsc --watch",
"start": "node build/index.js",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"puppeteer",
"screenshot",
"cursor",
"ai-tools"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"puppeteer": "^21.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
}
}