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 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://localhost:28491/v1/mcp/sse"
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://localhost:28491/v1/mcp"
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://localhost:28491/v1/mcp" }
169
+ docdex = { url = "http://127.0.0.1:28491/v1/mcp" }
170
170
 
171
171
  ```
172
172
 
package/assets/agents.md CHANGED
@@ -1,4 +1,4 @@
1
- ---- START OF DOCDEX INFO V0.2.48 ----
1
+ ---- START OF DOCDEX INFO V0.2.49 ----
2
2
  Docdex URL: http://127.0.0.1:28491
3
3
  Use this base URL for Docdex HTTP endpoints.
4
4
  Health check endpoint: `GET /healthz` (not `/v1/health`).
@@ -75,11 +75,11 @@ function daemonLockPaths() {
75
75
  }
76
76
 
77
77
  function configUrlForPort(port) {
78
- return `http://localhost:${port}/sse`;
78
+ return `http://${DEFAULT_HOST}:${port}/sse`;
79
79
  }
80
80
 
81
81
  function configStreamableUrlForPort(port) {
82
- return `http://localhost:${port}/v1/mcp`;
82
+ return `http://${DEFAULT_HOST}:${port}/v1/mcp`;
83
83
  }
84
84
 
85
85
  function isPortAvailable(port, host) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docdex",
3
- "version": "0.2.48",
3
+ "version": "0.2.49",
4
4
  "mcpName": "io.github.bekirdag/docdex",
5
5
  "description": "Local-first documentation and code indexer with HTTP/MCP search, AST, and agent memory.",
6
6
  "bin": {