@tpsdev-ai/flair-mcp 0.1.2 → 0.4.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.
Files changed (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -54,8 +54,10 @@ Once configured, Claude Code (or any MCP client) gets these tools:
54
54
  | Variable | Default | Description |
55
55
  |----------|---------|-------------|
56
56
  | `FLAIR_AGENT_ID` | *(required)* | Agent identity for memory scoping |
57
- | `FLAIR_URL` | `http://localhost:9926` | Flair server URL |
57
+ | `FLAIR_URL` | `http://localhost:19926` | Flair server URL |
58
58
  | `FLAIR_KEY_PATH` | auto-resolved | Path to Ed25519 private key |
59
+ | `FLAIR_ADMIN_USER` | *(optional)* | Admin username for Basic auth (standalone mode) |
60
+ | `FLAIR_ADMIN_PASSWORD` | *(optional)* | Admin password for Basic auth (standalone mode) |
59
61
 
60
62
  ## How It Works
61
63
 
@@ -77,7 +79,7 @@ Point to a remote Flair instance:
77
79
  "args": ["@tpsdev-ai/flair-mcp"],
78
80
  "env": {
79
81
  "FLAIR_AGENT_ID": "my-project",
80
- "FLAIR_URL": "http://your-server:9926"
82
+ "FLAIR_URL": "http://your-server:19926"
81
83
  }
82
84
  }
83
85
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tpsdev-ai/flair-mcp",
3
- "version": "0.1.2",
3
+ "version": "0.4.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",