-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathserver.json
More file actions
46 lines (46 loc) · 1.56 KB
/
server.json
File metadata and controls
46 lines (46 loc) · 1.56 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.isaac-levine/forage",
"description": "Self-improving tool discovery for AI agents. Find, install, and use new MCP servers automatically.",
"repository": {
"url": "https://github.com/isaac-levine/forage",
"source": "github"
},
"version": "0.1.1",
"packages": [
{
"registryType": "npm",
"identifier": "forage-mcp",
"version": "0.1.1",
"transport": {
"type": "stdio"
}
}
],
"tools": [
{
"name": "forage_search",
"description": "Search for MCP servers and tools across registries. Describe what capability you need and get ranked results."
},
{
"name": "forage_evaluate",
"description": "Get detailed information about a specific package — version, downloads, README summary, install command."
},
{
"name": "forage_install",
"description": "Install an MCP server and start it as a proxied subprocess. Tools become available immediately — no restart needed."
},
{
"name": "forage_learn",
"description": "Write usage instructions to agent rule files (CLAUDE.md, AGENTS.md, .cursor/rules/) for cross-session persistence."
},
{
"name": "forage_status",
"description": "List all tools that Forage has installed and is currently proxying."
},
{
"name": "forage_uninstall",
"description": "Remove a previously installed tool. Stops the server, removes from manifest, and cleans up agent rules."
}
]
}