@memfork/cli 0.1.38 → 0.1.42
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/dist/commands/install.js +1 -2
- package/package.json +1 -1
package/dist/commands/install.js
CHANGED
|
@@ -153,9 +153,8 @@ function upsertCodexMcp(tomlPath, creds) {
|
|
|
153
153
|
}
|
|
154
154
|
const block = `
|
|
155
155
|
[mcp_servers.memwal]
|
|
156
|
-
transport = "http"
|
|
157
156
|
url = "${creds.relayerUrl}"
|
|
158
|
-
|
|
157
|
+
http_headers = { Authorization = "Bearer ${creds.delegateKey}", x-memwal-account-id = "${creds.accountId}" }
|
|
159
158
|
`;
|
|
160
159
|
if (existing.includes("[mcp_servers.memwal]")) {
|
|
161
160
|
// Replace the existing block — find from the header to the next blank line / EOF.
|