docdex 0.2.48 → 0.2.49
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/CHANGELOG.md +4 -0
- package/README.md +3 -3
- package/assets/agents.md +1 -1
- package/lib/postinstall_setup.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.49
|
|
4
|
+
- Generate installer-managed MCP URLs with `127.0.0.1` so client configs match the daemon bind default.
|
|
5
|
+
- Update packaged MCP examples and add regression coverage for the postinstall URL helpers.
|
|
6
|
+
|
|
3
7
|
## 0.2.48
|
|
4
8
|
- Exclude paid or expensive mcoda agents from automatic local delegation target selection.
|
|
5
9
|
- Document the zero-cost local delegation rule in the packaged agent guidance.
|
package/README.md
CHANGED
|
@@ -141,7 +141,7 @@ If you need to configure your client manually:
|
|
|
141
141
|
{
|
|
142
142
|
"mcpServers": {
|
|
143
143
|
"docdex": {
|
|
144
|
-
"url": "http://
|
|
144
|
+
"url": "http://127.0.0.1:28491/v1/mcp/sse"
|
|
145
145
|
}
|
|
146
146
|
}
|
|
147
147
|
}
|
|
@@ -155,7 +155,7 @@ If you need to configure your client manually:
|
|
|
155
155
|
"mcpServers": {
|
|
156
156
|
"docdex": {
|
|
157
157
|
"type": "http",
|
|
158
|
-
"url": "http://
|
|
158
|
+
"url": "http://127.0.0.1:28491/v1/mcp"
|
|
159
159
|
}
|
|
160
160
|
}
|
|
161
161
|
}
|
|
@@ -166,7 +166,7 @@ If you need to configure your client manually:
|
|
|
166
166
|
|
|
167
167
|
```toml
|
|
168
168
|
[mcp_servers]
|
|
169
|
-
docdex = { url = "http://
|
|
169
|
+
docdex = { url = "http://127.0.0.1:28491/v1/mcp" }
|
|
170
170
|
|
|
171
171
|
```
|
|
172
172
|
|
package/assets/agents.md
CHANGED
package/lib/postinstall_setup.js
CHANGED
|
@@ -75,11 +75,11 @@ function daemonLockPaths() {
|
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
function configUrlForPort(port) {
|
|
78
|
-
return `http
|
|
78
|
+
return `http://${DEFAULT_HOST}:${port}/sse`;
|
|
79
79
|
}
|
|
80
80
|
|
|
81
81
|
function configStreamableUrlForPort(port) {
|
|
82
|
-
return `http
|
|
82
|
+
return `http://${DEFAULT_HOST}:${port}/v1/mcp`;
|
|
83
83
|
}
|
|
84
84
|
|
|
85
85
|
function isPortAvailable(port, host) {
|