-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.02 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.02 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
{
"name": "forage-mcp",
"version": "0.1.0",
"description": "Self-improving tool discovery for AI agents. Agents find, install, and learn to use new tools automatically.",
"type": "module",
"main": "dist/server.js",
"bin": {
"forage": "./dist/cli.js",
"forage-mcp": "./dist/server.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/server.js",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai-agents",
"tool-discovery",
"claude-code",
"cursor",
"codex"
],
"author": "Isaac Levine",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/isaac-levine/forage"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1"
},
"devDependencies": {
"@types/node": "^20.17.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
]
}