-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.71 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
{
"name": "search1api-mcp",
"version": "0.5.3",
"mcpName": "io.github.superagents-lab/search1api",
"description": "A Model Context Protocol (MCP) server that provides search and crawl functionality using Search1API",
"private": false,
"type": "module",
"bin": {
"search1api-mcp": "build/index.js"
},
"files": [
"build",
"server.json"
],
"scripts": {
"build": "node -e \"require('node:fs').rmSync('build', { recursive: true, force: true })\" && tsc && node -e \"require('node:fs').chmodSync('build/index.js', '755')\"",
"test": "npm run build && node --test tests/*.test.mjs",
"start": "node build/http.js",
"prepack": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"start:http": "node build/http.js",
"sync:manifest": "npm run build && node scripts/sync-lobe-manifest.mjs"
},
"dependencies": {
"@modelcontextprotocol/node": "^2.0.0",
"@modelcontextprotocol/server": "^2.0.0",
"dotenv": "^16.6.1",
"express": "^4.22.2"
},
"devDependencies": {
"@modelcontextprotocol/client": "^2.0.0",
"@types/express": "^5.0.6",
"@types/node": "^20.19.43",
"typescript": "^5.9.3"
},
"keywords": [
"mcp",
"claude",
"search",
"crawl",
"google",
"search1api"
],
"author": "Search1API",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/superagents-lab/search1api-mcp.git"
},
"homepage": "https://github.com/superagents-lab/search1api-mcp#readme",
"bugs": {
"url": "https://github.com/superagents-lab/search1api-mcp/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
}
}