-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.7 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.7 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "serp-it",
"version": "1.0.2",
"description": "MCP Tool, that can utilize multiple search engines and processing to provide AI ready results",
"keywords": [
"mcp",
"model-context-protocol",
"web-search",
"search-aggregator",
"multi-engine-search",
"search-engine",
"metasearch",
"serp",
"search-api",
"seo-tools",
"information-retrieval",
"web-scraping",
"playwright",
"pdf-parsing",
"markdown-rendering",
"browser-automation",
"nodejs"
],
"type": "module",
"main": "dist/index.js",
"bin": {
"serp-it": "dist/index.js"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"rebuild": "npm run clean && npm run build",
"start": "node dist/index.js",
"dev": "tsc --watch",
"test": "node test-search.mjs",
"playwright:install": "playwright install chromium",
"playwright:install-deps": "playwright install-deps chromium"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luka-dev/serp-it.git"
},
"author": "luka-dev",
"license": "ISC",
"bugs": {
"url": "https://github.com/luka-dev/serp-it/issues"
},
"homepage": "https://github.com/luka-dev/serp-it#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.19.1",
"@napi-rs/canvas": "^0.1.56",
"@types/pdf-parse": "^1.1.5",
"cheerio": "^1.0.0",
"express": "^4.21.2",
"pdf-parse": "^2.3.0",
"pdf-to-img": "^5.0.0",
"playwright": "^1.55.1",
"tesseract.js": "^7.0.0",
"turndown": "^7.2.1",
"turndown-plugin-gfm": "^1.0.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^24.6.2",
"typescript": "^5.9.3"
}
}