-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.8 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.8 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
{
"name": "agent-toolbox",
"version": "1.0.0",
"description": "REST API + MCP Server giving AI agents real-world superpowers — web search, content extraction, screenshots, weather, finance, email validation, and translation",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"mcp": "node dist/mcp-server.js"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"ai-agent",
"ai-tools",
"web-scraping",
"search-api",
"web-search",
"screenshot",
"weather-api",
"finance-api",
"email-validation",
"translation",
"content-extraction"
],
"author": "Agent Toolbox",
"license": "MIT",
"dependencies": {
"@hono/node-server": "^1.19.9",
"@modelcontextprotocol/sdk": "^1.27.1",
"@mozilla/readability": "^0.6.0",
"@types/better-sqlite3": "^7.6.13",
"@types/jsdom": "^28.0.0",
"@types/node": "^25.3.3",
"@types/pdf-parse": "^1.1.5",
"@types/qrcode": "^1.5.6",
"@types/turndown": "^5.0.6",
"@types/uuid": "^10.0.0",
"@vitalets/google-translate-api": "^9.2.1",
"better-sqlite3": "^12.6.2",
"creem": "^1.3.6",
"disposable-email-domains": "^1.0.62",
"hono": "^4.12.3",
"jsdom": "^28.1.0",
"pdf-parse": "^1.1.1",
"playwright": "^1.58.2",
"qrcode": "^1.5.4",
"tsx": "^4.21.0",
"turndown": "^7.2.2",
"typescript": "^5.9.3",
"uuid": "^13.0.0",
"whois-json": "^2.0.4",
"yahoo-finance2": "^3.13.1",
"zod": "^4.3.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vincentwei1021/agent-toolbox.git"
},
"homepage": "https://github.com/Vincentwei1021/agent-toolbox#readme",
"bugs": {
"url": "https://github.com/Vincentwei1021/agent-toolbox/issues"
}
}