-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.41 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.41 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
{
"name": "jina-mcp-tools",
"version": "1.2.3",
"description": "Jina AI Model Context Protocol (MCP) server that integrates with Jina AI APIs for web reading and search",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"jina-mcp-tools": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"@dqbd/tiktoken": "^1.0.0",
"@modelcontextprotocol/sdk": "^1.17.0",
"express": "^4.21.2",
"node-fetch": "^3.3.2",
"proxy-agent": "^6.5.0",
"zod": "^3.25.76"
},
"keywords": [
"jina",
"ai",
"mcp",
"model-context-protocol",
"search",
"web-reader",
"cursor",
"cursor-editor"
],
"repository": {
"type": "git",
"url": "git+https://github.com/PsychArch/jina-mcp-tools.git"
},
"homepage": "https://github.com/PsychArch/jina-mcp-tools#readme",
"bugs": {
"url": "https://github.com/PsychArch/jina-mcp-tools/issues"
},
"author": "PsychArch (https://github.com/PsychArch)",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^24.9.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}