@tpsdev-ai/flair-mcp 0.22.0 → 0.23.0
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/index.js +7 -0
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -146,6 +146,13 @@ export async function runMcp() {
|
|
|
146
146
|
agentId,
|
|
147
147
|
url: process.env.FLAIR_URL,
|
|
148
148
|
keyPath: process.env.FLAIR_KEY_PATH,
|
|
149
|
+
// flair#718 authorship-provenance: forward this stdio proxy's own
|
|
150
|
+
// FLAIR_CLIENT env (set by `flair init`'s per-client wiring, e.g.
|
|
151
|
+
// "claude-code"/"codex"/"gemini"/"cursor") into the client it constructs
|
|
152
|
+
// — explicit here rather than relying solely on FlairClient's own
|
|
153
|
+
// process.env fallback, so the forwarding is visible at this call site.
|
|
154
|
+
// Absent = omitted, zero behavior change for un-wired installs.
|
|
155
|
+
claimedClient: process.env.FLAIR_CLIENT,
|
|
149
156
|
});
|
|
150
157
|
// ─── Auto-presence (flair#598) ────────────────────────────────────────────────
|
|
151
158
|
//
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tpsdev-ai/flair-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.23.0",
|
|
4
4
|
"description": "MCP server for Flair — persistent memory for Claude Code, Cursor, and any MCP client.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@modelcontextprotocol/sdk": "1.27.1",
|
|
30
|
-
"@tpsdev-ai/flair-client": "0.
|
|
30
|
+
"@tpsdev-ai/flair-client": "0.23.0",
|
|
31
31
|
"zod": "4.3.6"
|
|
32
32
|
},
|
|
33
33
|
"license": "Apache-2.0",
|