fa-mcp-sdk 0.4.58 → 0.4.59
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.
|
@@ -263,6 +263,22 @@ Add to `~/.qwen/settings.json`:
|
|
|
263
263
|
}
|
|
264
264
|
}
|
|
265
265
|
```
|
|
266
|
+
|
|
267
|
+
Important!: In `--header` values, there must be **no space** after the `:`.
|
|
268
|
+
`"x-<prefix>-username:<your_username>"` is correct.
|
|
269
|
+
`"x-<prefix>-username: <your_username>"` is incorrect.
|
|
270
|
+
Applies to both Claude Desktop Option 2 (HTTP via `mcp-remote`) and Qwen Code.
|
|
271
|
+
|
|
272
|
+
### Codex
|
|
273
|
+
|
|
274
|
+
Add to `~/.codex/config.toml`:
|
|
275
|
+
|
|
276
|
+
```toml
|
|
277
|
+
[mcp_servers.<name>]
|
|
278
|
+
url = "http[s]://<host[:port]>/mcp"
|
|
279
|
+
http_headers = { "x-<prefix>-username" = "<your_username>", "x-<prefix>-password" = "<your_password>" }
|
|
280
|
+
```
|
|
281
|
+
|
|
266
282
|
```
|
|
267
283
|
|
|
268
284
|
---
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fa-mcp-sdk",
|
|
3
3
|
"productName": "FA MCP SDK",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.59",
|
|
5
5
|
"description": "Core infrastructure and templates for building Model Context Protocol (MCP) servers with TypeScript",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/core/index.js",
|