agent-discover 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -26,26 +26,44 @@ Static MCP configs mean every server is always running, even when unused. Adding
|
|
|
26
26
|
|
|
27
27
|
## Quick Start
|
|
28
28
|
|
|
29
|
+
### Install from npm
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
npm install -g agent-discover
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### Or clone from source
|
|
36
|
+
|
|
29
37
|
```bash
|
|
38
|
+
git clone https://github.com/keshrath/agent-discover.git
|
|
39
|
+
cd agent-discover
|
|
30
40
|
npm install
|
|
31
41
|
npm run build
|
|
32
|
-
node dist/index.js # MCP stdio server
|
|
33
|
-
node dist/server.js # HTTP dashboard only
|
|
34
42
|
```
|
|
35
43
|
|
|
36
|
-
|
|
44
|
+
### Option 1: MCP server (for AI agents)
|
|
45
|
+
|
|
46
|
+
Add to your MCP client config (Claude Code, Cline, etc.):
|
|
37
47
|
|
|
38
48
|
```json
|
|
39
49
|
{
|
|
40
50
|
"mcpServers": {
|
|
41
51
|
"agent-discover": {
|
|
42
|
-
"command": "
|
|
43
|
-
"args": ["
|
|
52
|
+
"command": "npx",
|
|
53
|
+
"args": ["agent-discover"]
|
|
44
54
|
}
|
|
45
55
|
}
|
|
46
56
|
}
|
|
47
57
|
```
|
|
48
58
|
|
|
59
|
+
The dashboard auto-starts at http://localhost:3424 on the first MCP connection.
|
|
60
|
+
|
|
61
|
+
### Option 2: Standalone server (for REST/WebSocket clients)
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
node dist/server.js --port 3424
|
|
65
|
+
```
|
|
66
|
+
|
|
49
67
|
## MCP Tools
|
|
50
68
|
|
|
51
69
|
| Tool | Actions | Description |
|
package/package.json
CHANGED