-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmcp-package.json
More file actions
53 lines (53 loc) · 1.24 KB
/
mcp-package.json
File metadata and controls
53 lines (53 loc) · 1.24 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
{
"name": "agent-toolbox-mcp",
"version": "1.0.0",
"description": "MCP server providing web search, content extraction, weather, finance, screenshot, email validation, and translation tools for AI agents",
"main": "dist/mcp-server.js",
"bin": {
"agent-toolbox-mcp": "dist/mcp-server.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/mcp-server.js"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai-agent",
"tools",
"web-search",
"screenshot",
"weather",
"finance",
"content-extraction",
"readability",
"ai-tools",
"email-validation",
"translation"
],
"author": "Agent Toolbox",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Vincentwei1021/agent-toolbox"
},
"homepage": "https://github.com/Vincentwei1021/agent-toolbox#mcp-server",
"bugs": {
"url": "https://github.com/Vincentwei1021/agent-toolbox/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@mozilla/readability": "^0.6.0",
"jsdom": "^28.1.0",
"playwright": "^1.58.2",
"turndown": "^7.2.2",
"yahoo-finance2": "^3.13.1",
"zod": "^4.3.6"
}
}