-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 955 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "snaprender-mcp",
"version": "1.5.4",
"mcpName": "io.github.User0856/snaprender",
"description": "MCP server for SnapRender Screenshot API — lets AI agents capture website screenshots",
"type": "module",
"main": "dist/index.js",
"bin": {
"snaprender-mcp": "dist/index.js"
},
"files": ["dist", "README.md"],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": ["mcp", "screenshot", "api", "snaprender", "claude", "ai", "agent", "model-context-protocol"],
"license": "MIT",
"homepage": "https://snap-render.com",
"repository": {
"type": "git",
"url": "https://github.com/User0856/snaprender-integrations",
"directory": "mcp-server"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1"
},
"devDependencies": {
"typescript": "^5.7.0",
"@types/node": "^22.0.0"
}
}