memory-journal-mcp 7.0.0 → 7.0.1
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/README.md
CHANGED
|
@@ -473,54 +473,52 @@ Each job is error-isolated — a failure in one job won't affect the others. Sch
|
|
|
473
473
|
|
|
474
474
|
The GitHub tools (`get_github_issues`, `get_github_prs`, etc.) auto-detect the repository from your git context when `PROJECT_REGISTRY` is configured or the MCP server is run inside a git repository.
|
|
475
475
|
|
|
476
|
-
| Environment Variable
|
|
477
|
-
|
|
|
478
|
-
| `DB_PATH`
|
|
479
|
-
| `TEAM_DB_PATH`
|
|
480
|
-
| `TEAM_AUTHOR`
|
|
481
|
-
| `GITHUB_TOKEN`
|
|
482
|
-
|
|
483
|
-
| `
|
|
484
|
-
| `
|
|
485
|
-
| `
|
|
486
|
-
| `
|
|
487
|
-
| `
|
|
488
|
-
| `
|
|
489
|
-
| `
|
|
490
|
-
| `
|
|
491
|
-
| `
|
|
492
|
-
| `
|
|
493
|
-
| `
|
|
494
|
-
| `
|
|
495
|
-
| `
|
|
496
|
-
| `
|
|
497
|
-
| `
|
|
498
|
-
| `
|
|
499
|
-
| `
|
|
500
|
-
| `
|
|
501
|
-
| `
|
|
502
|
-
| `
|
|
503
|
-
| `
|
|
504
|
-
| `
|
|
505
|
-
| `
|
|
506
|
-
| `
|
|
507
|
-
| `
|
|
508
|
-
| `
|
|
509
|
-
| `
|
|
510
|
-
| `
|
|
511
|
-
| `
|
|
512
|
-
| `
|
|
513
|
-
| `
|
|
514
|
-
| `
|
|
515
|
-
| `
|
|
516
|
-
| `
|
|
517
|
-
| `
|
|
518
|
-
| `
|
|
519
|
-
| `
|
|
520
|
-
| `
|
|
521
|
-
| `
|
|
522
|
-
| `AUDIT_LOG_MAX_SIZE` | Maximum audit log file size in bytes before rotation (CLI: `--audit-log-max-size`; default: `10485760`) |
|
|
523
|
-
| `MCP_METRICS_ENABLED` | Set to `false` to disable in-memory tool call metrics accumulation (default: `true`) |
|
|
476
|
+
| Environment Variable | Description |
|
|
477
|
+
| --------------------------------- | --------------------------------------------------------------------------------------------------------------------------- |
|
|
478
|
+
| `DB_PATH` | Database file location (CLI: `--db`; default: `./memory_journal.db`) |
|
|
479
|
+
| `TEAM_DB_PATH` | Team database file location (CLI: `--team-db`) |
|
|
480
|
+
| `TEAM_AUTHOR` | Override author name for team entries (default: `git config user.name`) |
|
|
481
|
+
| `GITHUB_TOKEN` | GitHub personal access token for API access |
|
|
482
|
+
| `DEFAULT_PROJECT_NUMBER` | Default GitHub Project number for auto-assignment when creating issues |
|
|
483
|
+
| `PROJECT_REGISTRY` | JSON map of repos to `{ path, project_number }` for multi-project auto-detection and routing |
|
|
484
|
+
| `AUTO_REBUILD_INDEX` | Set to `true` to rebuild vector index on server startup |
|
|
485
|
+
| `MCP_HOST` | Server bind host (`0.0.0.0` for containers, default: `localhost`) |
|
|
486
|
+
| `MCP_AUTH_TOKEN` | Bearer token for HTTP transport authentication (CLI: `--auth-token`) |
|
|
487
|
+
| `MCP_CORS_ORIGIN` | Allowed CORS origins for HTTP transport, comma-separated (default: `*`) |
|
|
488
|
+
| `MCP_RATE_LIMIT_MAX` | Max requests per minute per client IP, HTTP only (default: `100`) |
|
|
489
|
+
| `LOG_LEVEL` | Log verbosity: `error`, `warn`, `info`, `debug` (default: `info`; CLI: `--log-level`) |
|
|
490
|
+
| `MCP_ENABLE_HSTS` | Enable HSTS security header on HTTP responses (CLI: `--enable-hsts`; default: `false`) |
|
|
491
|
+
| `OAUTH_ENABLED` | Set to `true` to enable OAuth 2.1 authentication (HTTP only) |
|
|
492
|
+
| `OAUTH_ISSUER` | OAuth issuer URL (e.g., `https://auth.example.com/realms/mcp`) |
|
|
493
|
+
| `OAUTH_AUDIENCE` | Expected JWT audience claim |
|
|
494
|
+
| `OAUTH_JWKS_URI` | JWKS endpoint for token signature verification |
|
|
495
|
+
| `BRIEFING_ENTRY_COUNT` | Journal entries in briefing (CLI: `--briefing-entries`; default: `3`) |
|
|
496
|
+
| `BRIEFING_INCLUDE_TEAM` | Include team DB entries in briefing (`true`/`false`; default: `false`) |
|
|
497
|
+
| `BRIEFING_ISSUE_COUNT` | Issues to list in briefing; `0` = count only (default: `0`) |
|
|
498
|
+
| `BRIEFING_PR_COUNT` | PRs to list in briefing; `0` = count only (default: `0`) |
|
|
499
|
+
| `BRIEFING_PR_STATUS` | Show PR status breakdown (open/merged/closed; default: `false`) |
|
|
500
|
+
| `BRIEFING_WORKFLOW_COUNT` | Workflow runs to list in briefing; `0` = status only (default: `0`) |
|
|
501
|
+
| `BRIEFING_WORKFLOW_STATUS` | Show workflow status breakdown in briefing (default: `false`) |
|
|
502
|
+
| `BRIEFING_COPILOT_REVIEWS` | Aggregate Copilot review state in briefing (default: `false`) |
|
|
503
|
+
| `RULES_FILE_PATH` | Path to user rules file for agent awareness (CLI: `--rules-file`) |
|
|
504
|
+
| `SKILLS_DIR_PATH` | Path to skills directory for agent awareness (CLI: `--skills-dir`) |
|
|
505
|
+
| `MEMORY_JOURNAL_WORKFLOW_SUMMARY` | Free-text workflow summary for `memory://workflows` (CLI: `--workflow-summary`) |
|
|
506
|
+
| `INSTRUCTION_LEVEL` | Briefing depth: `essential`, `standard`, `full` (CLI: `--instruction-level`; default: `standard`) |
|
|
507
|
+
| `PROJECT_LINT_CMD` | Project lint command for GitHub Commander validation gates (default: `npm run lint`) |
|
|
508
|
+
| `PROJECT_TYPECHECK_CMD` | Project typecheck command (default: `npm run typecheck`; empty = skip) |
|
|
509
|
+
| `PROJECT_BUILD_CMD` | Project build command (default: `npm run build`; empty = skip) |
|
|
510
|
+
| `PROJECT_TEST_CMD` | Project test command (default: `npm run test`) |
|
|
511
|
+
| `PROJECT_E2E_CMD` | Project E2E test command (default: empty = skip) |
|
|
512
|
+
| `PROJECT_PACKAGE_MANAGER` | Package manager override: `npm`, `yarn`, `pnpm`, `bun` (default: auto-detect from lockfile) |
|
|
513
|
+
| `PROJECT_HAS_DOCKERFILE` | Enable Docker audit steps (default: auto-detect) |
|
|
514
|
+
| `COMMANDER_HITL_FILE_THRESHOLD` | Human-in-the-loop checkpoint if changes touch > N files (default: `10`) |
|
|
515
|
+
| `COMMANDER_SECURITY_TOOLS` | Override security tool auto-detection (comma-separated; default: auto-detect) |
|
|
516
|
+
| `COMMANDER_BRANCH_PREFIX` | Branch naming prefix for PRs (default: `fix`) |
|
|
517
|
+
| `AUDIT_LOG_PATH` | Path for the JSONL audit log of write/admin tool calls. Rotates at 10 MB (keeps 5 archives). Omit to disable audit logging. |
|
|
518
|
+
| `AUDIT_REDACT` | Set to `true` to omit tool arguments from audit log entries for privacy (default: `false`) |
|
|
519
|
+
| `AUDIT_READS` | Log read-scoped tool calls in addition to write/admin (CLI: `--audit-reads`; default: `false`) |
|
|
520
|
+
| `AUDIT_LOG_MAX_SIZE` | Maximum audit log file size in bytes before rotation (CLI: `--audit-log-max-size`; default: `10485760`) |
|
|
521
|
+
| `MCP_METRICS_ENABLED` | Set to `false` to disable in-memory tool call metrics accumulation (default: `true`) |
|
|
524
522
|
|
|
525
523
|
**Multi-Project Workflows**: For agents to seamlessly support multiple projects, provide **`PROJECT_REGISTRY`**.
|
|
526
524
|
|
|
@@ -631,7 +629,7 @@ flowchart TB
|
|
|
631
629
|
|
|
632
630
|
subgraph MCP["Memory Journal MCP Server"]
|
|
633
631
|
Tools["🛠️ 61 Tools"]
|
|
634
|
-
Resources["📡
|
|
632
|
+
Resources["📡 38 Resources"]
|
|
635
633
|
Prompts["💬 17 Prompts"]
|
|
636
634
|
end
|
|
637
635
|
|
|
@@ -4553,13 +4553,13 @@ function getTemplateResourceDefinitions() {
|
|
|
4553
4553
|
return { error: "Invalid project number" };
|
|
4554
4554
|
}
|
|
4555
4555
|
if (!context.github) {
|
|
4556
|
-
return 'graph LR\n NoGitHub["GitHub integration not available \u2014 set GITHUB_TOKEN
|
|
4556
|
+
return 'graph LR\n NoGitHub["GitHub integration not available \u2014 set GITHUB_TOKEN or enable GitHub integration"]';
|
|
4557
4557
|
}
|
|
4558
4558
|
const repoInfo = await context.github.getRepoInfo();
|
|
4559
4559
|
const owner = repoInfo.owner;
|
|
4560
4560
|
const repo = repoInfo.repo ?? void 0;
|
|
4561
4561
|
if (!owner) {
|
|
4562
|
-
return 'graph LR\n NoOwner["Repository owner not detected \u2014
|
|
4562
|
+
return 'graph LR\n NoOwner["Repository owner not detected \u2014 configure PROJECT_REGISTRY or run the server from within a valid git repository"]';
|
|
4563
4563
|
}
|
|
4564
4564
|
const board = await context.github.getProjectKanban(owner, projectNumber, repo);
|
|
4565
4565
|
if (!board) {
|
package/dist/cli.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { VERSION, createServer } from './chunk-
|
|
1
|
+
import { VERSION, createServer } from './chunk-6J4RPJ4I.js';
|
|
2
2
|
import { DEFAULT_AUDIT_LOG_MAX_SIZE_BYTES } from './chunk-2BJHLTYP.js';
|
|
3
3
|
import './chunk-OKOVZ5QE.js';
|
|
4
4
|
import { logger } from './chunk-ARLH46WS.js';
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { VERSION, createServer } from './chunk-
|
|
1
|
+
export { VERSION, createServer } from './chunk-6J4RPJ4I.js';
|
|
2
2
|
export { META_GROUPS, TOOL_GROUPS, calculateTokenSavings, filterTools, getAllToolNames, getFilterSummary, getToolFilterFromEnv, getToolGroup, isToolEnabled, parseToolFilter } from './chunk-2BJHLTYP.js';
|
|
3
3
|
import './chunk-OKOVZ5QE.js';
|
|
4
4
|
export { logger } from './chunk-ARLH46WS.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "memory-journal-mcp",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.1",
|
|
4
4
|
"description": "Project context management for AI-assisted development - Persistent knowledge graphs and intelligent context recall across fragmented AI threads",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -50,7 +50,7 @@ Load this skill when any of these apply:
|
|
|
50
50
|
|
|
51
51
|
- `gh` CLI authenticated (`gh auth status`)
|
|
52
52
|
- `GITHUB_TOKEN` set for API access
|
|
53
|
-
- `
|
|
53
|
+
- `PROJECT_REGISTRY` configured for repo auto-detection
|
|
54
54
|
- Project repo cloned locally
|
|
55
55
|
|
|
56
56
|
## Configuration
|
|
@@ -12,7 +12,7 @@ Copy the relevant variables to your MCP server configuration.
|
|
|
12
12
|
"command": "memory-journal-mcp",
|
|
13
13
|
"env": {
|
|
14
14
|
"GITHUB_TOKEN": "ghp_your_token",
|
|
15
|
-
"
|
|
15
|
+
"PROJECT_REGISTRY": "{\"my-repo\":{\"path\":\"/path/to/your/repo\",\"project_number\":1}}"
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
}
|