memory-journal-mcp 3.1.5 → 4.1.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/.dockerignore +93 -59
- package/.github/ISSUE_TEMPLATE/bug_report.md +20 -1
- package/.github/ISSUE_TEMPLATE/config.yml +1 -1
- package/.github/ISSUE_TEMPLATE/feature_request.md +24 -3
- package/.github/ISSUE_TEMPLATE/question.md +17 -2
- package/.github/dependabot.yml +52 -52
- package/.github/pull_request_template.md +28 -3
- package/.github/workflows/DOCKER_DEPLOYMENT_SETUP.md +43 -2
- package/.github/workflows/codeql.yml +3 -3
- package/.github/workflows/dependabot-auto-merge.yml +1 -1
- package/.github/workflows/docker-publish.yml +233 -226
- package/.github/workflows/lint-and-test.yml +3 -3
- package/.github/workflows/publish-npm.yml +3 -3
- package/.github/workflows/secrets-scanning.yml +2 -2
- package/.github/workflows/security-update.yml +88 -75
- package/.prettierignore +21 -0
- package/.prettierrc +33 -0
- package/.vscode/settings.json +82 -0
- package/CHANGELOG.md +1 -0
- package/CODE_OF_CONDUCT.md +13 -12
- package/CONTRIBUTING.md +14 -6
- package/DOCKER_README.md +171 -121
- package/Dockerfile +38 -6
- package/README.md +174 -211
- package/SECURITY.md +22 -2
- package/VERSION +1 -1
- package/dist/cli.js +9 -1
- package/dist/cli.js.map +1 -1
- package/dist/constants/ServerInstructions.d.ts +27 -3
- package/dist/constants/ServerInstructions.d.ts.map +1 -1
- package/dist/constants/ServerInstructions.js +87 -35
- package/dist/constants/ServerInstructions.js.map +1 -1
- package/dist/constants/icons.d.ts +54 -0
- package/dist/constants/icons.d.ts.map +1 -0
- package/dist/constants/icons.js +150 -0
- package/dist/constants/icons.js.map +1 -0
- package/dist/database/SqliteAdapter.d.ts.map +1 -1
- package/dist/database/SqliteAdapter.js +29 -22
- package/dist/database/SqliteAdapter.js.map +1 -1
- package/dist/filtering/ToolFilter.d.ts +1 -1
- package/dist/filtering/ToolFilter.d.ts.map +1 -1
- package/dist/filtering/ToolFilter.js +17 -32
- package/dist/filtering/ToolFilter.js.map +1 -1
- package/dist/github/GitHubIntegration.d.ts +24 -0
- package/dist/github/GitHubIntegration.d.ts.map +1 -1
- package/dist/github/GitHubIntegration.js +146 -19
- package/dist/github/GitHubIntegration.js.map +1 -1
- package/dist/handlers/prompts/index.d.ts.map +1 -1
- package/dist/handlers/prompts/index.js +177 -64
- package/dist/handlers/prompts/index.js.map +1 -1
- package/dist/handlers/resources/index.d.ts +16 -2
- package/dist/handlers/resources/index.d.ts.map +1 -1
- package/dist/handlers/resources/index.js +525 -57
- package/dist/handlers/resources/index.js.map +1 -1
- package/dist/handlers/tools/index.d.ts +8 -2
- package/dist/handlers/tools/index.d.ts.map +1 -1
- package/dist/handlers/tools/index.js +1032 -83
- package/dist/handlers/tools/index.js.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/server/McpServer.d.ts +2 -0
- package/dist/server/McpServer.d.ts.map +1 -1
- package/dist/server/McpServer.js +121 -35
- package/dist/server/McpServer.js.map +1 -1
- package/dist/types/index.d.ts +19 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js.map +1 -1
- package/dist/utils/McpLogger.d.ts.map +1 -1
- package/dist/utils/McpLogger.js.map +1 -1
- package/dist/utils/logger.d.ts.map +1 -1
- package/dist/utils/logger.js.map +1 -1
- package/dist/utils/progress-utils.d.ts +38 -0
- package/dist/utils/progress-utils.d.ts.map +1 -0
- package/dist/utils/progress-utils.js +63 -0
- package/dist/utils/progress-utils.js.map +1 -0
- package/dist/vector/VectorSearchManager.d.ts +5 -1
- package/dist/vector/VectorSearchManager.d.ts.map +1 -1
- package/dist/vector/VectorSearchManager.js +60 -17
- package/dist/vector/VectorSearchManager.js.map +1 -1
- package/eslint.config.js +62 -38
- package/mcp-config-example.json +20 -19
- package/package.json +5 -5
- package/releases/release-notes-v2.2.0.md +36 -33
- package/releases/release-notes.md +21 -15
- package/releases/v3.0.0.md +22 -21
- package/releases/v3.1.0.md +17 -14
- package/releases/v3.1.1.md +2 -0
- package/releases/v3.1.2.md +2 -0
- package/releases/v3.1.3.md +6 -0
- package/releases/v3.1.4.md +3 -0
- package/releases/v3.1.5.md +5 -1
- package/releases/v4.0.0.md +71 -0
- package/releases/v4.1.0.md +88 -0
- package/server.json +41 -41
- package/src/cli.ts +47 -34
- package/src/constants/ServerInstructions.ts +126 -50
- package/src/constants/icons.ts +175 -0
- package/src/database/SqliteAdapter.ts +339 -319
- package/src/filtering/ToolFilter.ts +65 -85
- package/src/github/GitHubIntegration.ts +381 -208
- package/src/handlers/prompts/index.ts +359 -194
- package/src/handlers/resources/index.ts +806 -205
- package/src/handlers/tools/index.ts +1501 -344
- package/src/index.ts +6 -6
- package/src/server/McpServer.ts +259 -121
- package/src/types/index.ts +183 -160
- package/src/types/sql.js.d.ts +17 -13
- package/src/utils/McpLogger.ts +33 -33
- package/src/utils/logger.ts +32 -32
- package/src/utils/progress-utils.ts +89 -0
- package/src/vector/VectorSearchManager.ts +148 -93
- package/tools.json +298 -298
- package/tsconfig.json +4 -13
package/.dockerignore
CHANGED
|
@@ -1,88 +1,122 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
# GitHub-specific files
|
|
7
|
-
CODE_OF_CONDUCT.md
|
|
8
|
-
CONTRIBUTING.md
|
|
9
|
-
.github/
|
|
10
|
-
SECURITY.md
|
|
1
|
+
# =============================================================================
|
|
2
|
+
# Memory Journal MCP - Docker Build Ignore File
|
|
3
|
+
# =============================================================================
|
|
4
|
+
# Files and directories excluded from Docker build context
|
|
5
|
+
# Keep this in sync with .gitignore where applicable
|
|
11
6
|
|
|
12
|
-
#
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
*.so
|
|
17
|
-
.Python
|
|
18
|
-
build/
|
|
19
|
-
develop-eggs/
|
|
20
|
-
dist/
|
|
21
|
-
downloads/
|
|
22
|
-
eggs/
|
|
23
|
-
.eggs/
|
|
24
|
-
lib/
|
|
25
|
-
lib64/
|
|
26
|
-
parts/
|
|
27
|
-
sdist/
|
|
28
|
-
var/
|
|
29
|
-
wheels/
|
|
30
|
-
*.egg-info/
|
|
31
|
-
.installed.cfg
|
|
32
|
-
*.egg
|
|
7
|
+
# -----------------------------------------------------------------------------
|
|
8
|
+
# Dependencies (reinstalled in builder stage)
|
|
9
|
+
# -----------------------------------------------------------------------------
|
|
10
|
+
node_modules/
|
|
33
11
|
|
|
34
|
-
#
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
12
|
+
# -----------------------------------------------------------------------------
|
|
13
|
+
# Git and Version Control
|
|
14
|
+
# -----------------------------------------------------------------------------
|
|
15
|
+
.git/
|
|
16
|
+
.gitignore
|
|
17
|
+
.github/
|
|
38
18
|
|
|
39
|
-
#
|
|
19
|
+
# -----------------------------------------------------------------------------
|
|
20
|
+
# IDE and Editor Files
|
|
21
|
+
# -----------------------------------------------------------------------------
|
|
40
22
|
.vscode/
|
|
41
23
|
.cursor/
|
|
24
|
+
.idea/
|
|
42
25
|
*.swp
|
|
43
26
|
*.swo
|
|
44
27
|
*~
|
|
45
28
|
|
|
46
|
-
#
|
|
29
|
+
# -----------------------------------------------------------------------------
|
|
30
|
+
# OS Files
|
|
31
|
+
# -----------------------------------------------------------------------------
|
|
47
32
|
.DS_Store
|
|
48
33
|
Thumbs.db
|
|
49
34
|
|
|
50
|
-
#
|
|
35
|
+
# -----------------------------------------------------------------------------
|
|
36
|
+
# Development Tooling (not needed in production)
|
|
37
|
+
# -----------------------------------------------------------------------------
|
|
38
|
+
.prettierrc
|
|
39
|
+
.prettierignore
|
|
40
|
+
eslint.config.js
|
|
41
|
+
|
|
42
|
+
# -----------------------------------------------------------------------------
|
|
43
|
+
# Local Development Files
|
|
44
|
+
# -----------------------------------------------------------------------------
|
|
45
|
+
docker-compose.yml
|
|
46
|
+
mcp-config-example.json
|
|
47
|
+
tools.json
|
|
48
|
+
server.json
|
|
49
|
+
mcp-publisher.exe
|
|
50
|
+
|
|
51
|
+
# -----------------------------------------------------------------------------
|
|
52
|
+
# Security Scanning Configs (CI only)
|
|
53
|
+
# -----------------------------------------------------------------------------
|
|
54
|
+
.scout-ignore
|
|
55
|
+
.trivyignore
|
|
56
|
+
trivy-results.sarif
|
|
57
|
+
|
|
58
|
+
# -----------------------------------------------------------------------------
|
|
59
|
+
# Documentation (keep README.md for Docker Hub)
|
|
60
|
+
# -----------------------------------------------------------------------------
|
|
51
61
|
docs/
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
62
|
+
releases/
|
|
63
|
+
CHANGELOG.md
|
|
64
|
+
CODE_OF_CONDUCT.md
|
|
65
|
+
CONTRIBUTING.md
|
|
66
|
+
DOCKER_README.md
|
|
67
|
+
SECURITY.md
|
|
68
|
+
*.md
|
|
69
|
+
!README.md
|
|
55
70
|
|
|
56
|
-
#
|
|
71
|
+
# -----------------------------------------------------------------------------
|
|
72
|
+
# Data Directory (mounted as volume at runtime)
|
|
73
|
+
# -----------------------------------------------------------------------------
|
|
57
74
|
data/
|
|
58
75
|
|
|
59
|
-
#
|
|
76
|
+
# -----------------------------------------------------------------------------
|
|
77
|
+
# Database Files (runtime only)
|
|
78
|
+
# -----------------------------------------------------------------------------
|
|
79
|
+
*.db
|
|
80
|
+
*.db-shm
|
|
81
|
+
*.db-wal
|
|
82
|
+
*.sqlite
|
|
83
|
+
*.sqlite3
|
|
84
|
+
|
|
85
|
+
# -----------------------------------------------------------------------------
|
|
86
|
+
# Temporary Files
|
|
87
|
+
# -----------------------------------------------------------------------------
|
|
60
88
|
temp/
|
|
61
89
|
tmp/
|
|
62
90
|
*.tmp
|
|
63
91
|
*.temp
|
|
64
92
|
|
|
93
|
+
# -----------------------------------------------------------------------------
|
|
65
94
|
# Logs
|
|
95
|
+
# -----------------------------------------------------------------------------
|
|
66
96
|
*.log
|
|
67
97
|
logs/
|
|
68
98
|
|
|
69
|
-
#
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
*.db-wal
|
|
73
|
-
|
|
74
|
-
# Development files
|
|
75
|
-
docker-compose.yml
|
|
76
|
-
mcp-config-example.json
|
|
77
|
-
tools.json
|
|
78
|
-
|
|
79
|
-
# CI/CD files
|
|
80
|
-
.github/workflows/
|
|
81
|
-
dependabot.yml
|
|
82
|
-
|
|
83
|
-
# Security files
|
|
84
|
-
trivy-results.sarif
|
|
99
|
+
# -----------------------------------------------------------------------------
|
|
100
|
+
# Security and Secrets
|
|
101
|
+
# -----------------------------------------------------------------------------
|
|
85
102
|
*.pem
|
|
86
103
|
*.key
|
|
87
104
|
.env
|
|
88
105
|
.env.*
|
|
106
|
+
auth.json
|
|
107
|
+
github_auth.json
|
|
108
|
+
.mcpregistry_*
|
|
109
|
+
|
|
110
|
+
# -----------------------------------------------------------------------------
|
|
111
|
+
# Python Legacy (archived, not used in TypeScript version)
|
|
112
|
+
# -----------------------------------------------------------------------------
|
|
113
|
+
__pycache__/
|
|
114
|
+
*.py[cod]
|
|
115
|
+
*$py.class
|
|
116
|
+
*.so
|
|
117
|
+
.Python
|
|
118
|
+
venv/
|
|
119
|
+
env/
|
|
120
|
+
ENV/
|
|
121
|
+
*.egg-info/
|
|
122
|
+
*.egg
|
|
@@ -7,36 +7,47 @@ assignees: ''
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
9
|
## 🐛 Bug Description
|
|
10
|
+
|
|
10
11
|
A clear and concise description of what the bug is.
|
|
11
12
|
|
|
12
13
|
## 🔄 Steps to Reproduce
|
|
14
|
+
|
|
13
15
|
Steps to reproduce the behavior:
|
|
16
|
+
|
|
14
17
|
1. Go to '...'
|
|
15
18
|
2. Execute command '...'
|
|
16
19
|
3. See error
|
|
17
20
|
|
|
18
21
|
## ✅ Expected Behavior
|
|
22
|
+
|
|
19
23
|
A clear and concise description of what you expected to happen.
|
|
20
24
|
|
|
21
25
|
## ❌ Actual Behavior
|
|
26
|
+
|
|
22
27
|
A clear and concise description of what actually happened.
|
|
23
28
|
|
|
24
29
|
## 📱 Environment
|
|
30
|
+
|
|
25
31
|
**MCP Client:**
|
|
32
|
+
|
|
26
33
|
- Client: [e.g. Cursor, Claude Desktop]
|
|
27
34
|
- Version: [e.g. 0.42.3]
|
|
28
35
|
|
|
29
36
|
**System:**
|
|
37
|
+
|
|
30
38
|
- OS: [e.g. Windows 11, macOS 14, Ubuntu 22.04]
|
|
31
39
|
- Python Version: [e.g. 3.11.5]
|
|
32
40
|
- Docker Version: [e.g. 24.0.6] (if using Docker)
|
|
33
41
|
|
|
34
42
|
**Memory Journal MCP:**
|
|
43
|
+
|
|
35
44
|
- Version/Tag: [e.g. :lite, :latest, commit hash]
|
|
36
45
|
- Installation Method: [Docker Hub, local build, manual]
|
|
37
46
|
|
|
38
47
|
## 📋 Configuration
|
|
48
|
+
|
|
39
49
|
**MCP Configuration** (from ~/.cursor/mcp.json or similar):
|
|
50
|
+
|
|
40
51
|
```json
|
|
41
52
|
{
|
|
42
53
|
"mcpServers": {
|
|
@@ -48,29 +59,37 @@ A clear and concise description of what actually happened.
|
|
|
48
59
|
```
|
|
49
60
|
|
|
50
61
|
## 📊 Database State
|
|
62
|
+
|
|
51
63
|
- Database size: [e.g. 2.3MB, empty]
|
|
52
64
|
- Number of entries: [e.g. 150 entries, fresh install]
|
|
53
65
|
- Recent operations: [e.g. created 5 entries today]
|
|
54
66
|
|
|
55
67
|
## 🔍 Error Logs
|
|
68
|
+
|
|
56
69
|
**Error Messages:**
|
|
70
|
+
|
|
57
71
|
```
|
|
58
72
|
Paste any error messages or stack traces here
|
|
59
73
|
```
|
|
60
74
|
|
|
61
75
|
**MCP Server Logs:**
|
|
76
|
+
|
|
62
77
|
```
|
|
63
78
|
Include any relevant server output or logs
|
|
64
79
|
```
|
|
65
80
|
|
|
66
81
|
## 🖼️ Screenshots
|
|
82
|
+
|
|
67
83
|
If applicable, add screenshots to help explain your problem.
|
|
68
84
|
|
|
69
85
|
## 🔧 Additional Context
|
|
86
|
+
|
|
70
87
|
Add any other context about the problem here:
|
|
88
|
+
|
|
71
89
|
- Does this happen consistently or intermittently?
|
|
72
90
|
- Any recent changes to your setup?
|
|
73
91
|
- Workarounds you've tried?
|
|
74
92
|
|
|
75
93
|
## ✨ Possible Solution
|
|
76
|
-
|
|
94
|
+
|
|
95
|
+
If you have ideas on how to fix this, please share them here.
|
|
@@ -8,4 +8,4 @@ contact_links:
|
|
|
8
8
|
about: View the official Docker images and installation instructions
|
|
9
9
|
- name: 💬 GitHub Discussions
|
|
10
10
|
url: https://github.com/neverinfamous/memory-journal-mcp/discussions
|
|
11
|
-
about: Ask questions, share ideas, and discuss with the community
|
|
11
|
+
about: Ask questions, share ideas, and discuss with the community
|
|
@@ -7,31 +7,40 @@ assignees: ''
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
9
|
## 🚀 Feature Summary
|
|
10
|
+
|
|
10
11
|
A clear and concise description of the feature you'd like to see.
|
|
11
12
|
|
|
12
13
|
## 💡 Problem Statement
|
|
14
|
+
|
|
13
15
|
**Is your feature request related to a problem? Please describe.**
|
|
14
16
|
A clear description of what the problem is. Ex. I'm always frustrated when [...]
|
|
15
17
|
|
|
16
18
|
## 🎯 Proposed Solution
|
|
19
|
+
|
|
17
20
|
**Describe the solution you'd like**
|
|
18
21
|
A clear and concise description of what you want to happen.
|
|
19
22
|
|
|
20
23
|
## 🔄 Developer Workflow
|
|
24
|
+
|
|
21
25
|
**How would this fit into developer workflows?**
|
|
22
26
|
Describe how this feature would be used in day-to-day development work:
|
|
27
|
+
|
|
23
28
|
- When would developers use this?
|
|
24
29
|
- What problem does it solve in their workflow?
|
|
25
30
|
- How does it integrate with existing tools/processes?
|
|
26
31
|
|
|
27
32
|
## 📋 Detailed Requirements
|
|
33
|
+
|
|
28
34
|
**Specific functionality needed:**
|
|
35
|
+
|
|
29
36
|
- [ ] Requirement 1
|
|
30
37
|
- [ ] Requirement 2
|
|
31
38
|
- [ ] Requirement 3
|
|
32
39
|
|
|
33
40
|
## 🛠️ Technical Considerations
|
|
41
|
+
|
|
34
42
|
**Implementation thoughts:**
|
|
43
|
+
|
|
35
44
|
- Database schema changes needed?
|
|
36
45
|
- New MCP tools required?
|
|
37
46
|
- Docker image impact?
|
|
@@ -39,51 +48,63 @@ Describe how this feature would be used in day-to-day development work:
|
|
|
39
48
|
- Breaking changes?
|
|
40
49
|
|
|
41
50
|
## 📊 Example Usage
|
|
51
|
+
|
|
42
52
|
**Show how this would work:**
|
|
43
53
|
|
|
44
54
|
```javascript
|
|
45
55
|
// Example MCP tool usage
|
|
46
56
|
create_entry({
|
|
47
|
-
content:
|
|
48
|
-
new_feature_param:
|
|
57
|
+
content: 'Example of how the new feature would work',
|
|
58
|
+
new_feature_param: 'value',
|
|
49
59
|
})
|
|
50
60
|
```
|
|
51
61
|
|
|
52
62
|
**Or command examples:**
|
|
63
|
+
|
|
53
64
|
```bash
|
|
54
65
|
# Example command or configuration
|
|
55
66
|
docker run memory-journal-mcp --new-feature
|
|
56
67
|
```
|
|
57
68
|
|
|
58
69
|
## 🔀 Alternatives Considered
|
|
70
|
+
|
|
59
71
|
**Describe alternatives you've considered**
|
|
60
72
|
A clear description of any alternative solutions or features you've considered.
|
|
61
73
|
|
|
62
74
|
## 🎨 User Experience
|
|
75
|
+
|
|
63
76
|
**How should this feel to use?**
|
|
77
|
+
|
|
64
78
|
- Should it be automatic or manual?
|
|
65
79
|
- What feedback should users get?
|
|
66
80
|
- How should errors be handled?
|
|
67
81
|
- Integration with existing UI/prompts?
|
|
68
82
|
|
|
69
83
|
## 📈 Success Criteria
|
|
84
|
+
|
|
70
85
|
**How will we know this feature is successful?**
|
|
86
|
+
|
|
71
87
|
- [ ] Criteria 1
|
|
72
88
|
- [ ] Criteria 2
|
|
73
89
|
- [ ] Criteria 3
|
|
74
90
|
|
|
75
91
|
## 🔗 Related Issues
|
|
92
|
+
|
|
76
93
|
**Link any related issues or discussions:**
|
|
94
|
+
|
|
77
95
|
- Fixes #123
|
|
78
96
|
- Related to #456
|
|
79
97
|
- Depends on #789
|
|
80
98
|
|
|
81
99
|
## 📝 Additional Context
|
|
100
|
+
|
|
82
101
|
Add any other context, mockups, or screenshots about the feature request here.
|
|
83
102
|
|
|
84
103
|
## 🏆 Implementation Interest
|
|
104
|
+
|
|
85
105
|
**Are you interested in implementing this feature?**
|
|
106
|
+
|
|
86
107
|
- [ ] I'd like to work on this
|
|
87
108
|
- [ ] I can help with testing
|
|
88
109
|
- [ ] I can help with documentation
|
|
89
|
-
- [ ] I'm just suggesting the idea
|
|
110
|
+
- [ ] I'm just suggesting the idea
|
|
@@ -7,16 +7,21 @@ assignees: ''
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
9
|
## ❓ Question
|
|
10
|
+
|
|
10
11
|
A clear and concise question about the Memory Journal MCP Server.
|
|
11
12
|
|
|
12
13
|
## 🎯 What I'm Trying to Do
|
|
14
|
+
|
|
13
15
|
Describe what you're trying to accomplish:
|
|
16
|
+
|
|
14
17
|
- What's your use case?
|
|
15
18
|
- What workflow are you trying to implement?
|
|
16
19
|
- What's the end goal?
|
|
17
20
|
|
|
18
21
|
## 🔄 What I've Tried
|
|
22
|
+
|
|
19
23
|
**Steps I've already taken:**
|
|
24
|
+
|
|
20
25
|
1. Checked the README documentation
|
|
21
26
|
2. Searched existing issues
|
|
22
27
|
3. Tried these approaches:
|
|
@@ -24,13 +29,17 @@ Describe what you're trying to accomplish:
|
|
|
24
29
|
- Approach 2
|
|
25
30
|
|
|
26
31
|
## 📱 Environment
|
|
32
|
+
|
|
27
33
|
**System:**
|
|
34
|
+
|
|
28
35
|
- OS: [e.g. Windows 11, macOS 14, Ubuntu 22.04]
|
|
29
36
|
- MCP Client: [e.g. Cursor 0.42.3]
|
|
30
37
|
- Installation: [Docker Hub :lite, local build, etc.]
|
|
31
38
|
|
|
32
39
|
## 📋 Configuration
|
|
40
|
+
|
|
33
41
|
**Current MCP Configuration:**
|
|
42
|
+
|
|
34
43
|
```json
|
|
35
44
|
{
|
|
36
45
|
"mcpServers": {
|
|
@@ -42,22 +51,28 @@ Describe what you're trying to accomplish:
|
|
|
42
51
|
```
|
|
43
52
|
|
|
44
53
|
## 📊 Current Behavior
|
|
54
|
+
|
|
45
55
|
**What's happening now:**
|
|
46
56
|
Describe the current behavior you're seeing.
|
|
47
57
|
|
|
48
|
-
## ✅ Expected/Desired Behavior
|
|
58
|
+
## ✅ Expected/Desired Behavior
|
|
59
|
+
|
|
49
60
|
**What I want to happen:**
|
|
50
61
|
Describe what you'd like to see happen instead.
|
|
51
62
|
|
|
52
63
|
## 🔍 Specific Questions
|
|
64
|
+
|
|
53
65
|
**Specific things I need help with:**
|
|
66
|
+
|
|
54
67
|
1. Question 1?
|
|
55
68
|
2. Question 2?
|
|
56
69
|
3. Question 3?
|
|
57
70
|
|
|
58
71
|
## 📝 Additional Context
|
|
72
|
+
|
|
59
73
|
Add any other context that might be helpful:
|
|
74
|
+
|
|
60
75
|
- Error messages
|
|
61
76
|
- Screenshots
|
|
62
77
|
- Related documentation you've read
|
|
63
|
-
- Similar tools you've used
|
|
78
|
+
- Similar tools you've used
|
package/.github/dependabot.yml
CHANGED
|
@@ -5,91 +5,91 @@
|
|
|
5
5
|
version: 2
|
|
6
6
|
updates:
|
|
7
7
|
# NPM dependencies (TypeScript/Node.js - v3.0.0+)
|
|
8
|
-
- package-ecosystem:
|
|
9
|
-
directory:
|
|
8
|
+
- package-ecosystem: 'npm'
|
|
9
|
+
directory: '/'
|
|
10
10
|
schedule:
|
|
11
|
-
interval:
|
|
12
|
-
day:
|
|
13
|
-
time:
|
|
14
|
-
timezone:
|
|
11
|
+
interval: 'weekly'
|
|
12
|
+
day: 'monday'
|
|
13
|
+
time: '09:00'
|
|
14
|
+
timezone: 'America/New_York'
|
|
15
15
|
open-pull-requests-limit: 10
|
|
16
16
|
reviewers:
|
|
17
|
-
-
|
|
17
|
+
- 'neverinfamous'
|
|
18
18
|
labels:
|
|
19
|
-
-
|
|
20
|
-
-
|
|
19
|
+
- 'dependencies'
|
|
20
|
+
- 'npm'
|
|
21
21
|
groups:
|
|
22
22
|
mcp-core:
|
|
23
23
|
patterns:
|
|
24
|
-
-
|
|
25
|
-
-
|
|
24
|
+
- '@modelcontextprotocol/*'
|
|
25
|
+
- 'zod*'
|
|
26
26
|
update-types:
|
|
27
|
-
-
|
|
28
|
-
-
|
|
27
|
+
- 'minor'
|
|
28
|
+
- 'patch'
|
|
29
29
|
ml-packages:
|
|
30
30
|
patterns:
|
|
31
|
-
-
|
|
32
|
-
-
|
|
31
|
+
- '@xenova/*'
|
|
32
|
+
- 'vectra*'
|
|
33
33
|
update-types:
|
|
34
|
-
-
|
|
35
|
-
-
|
|
34
|
+
- 'minor'
|
|
35
|
+
- 'patch'
|
|
36
36
|
database:
|
|
37
37
|
patterns:
|
|
38
|
-
-
|
|
39
|
-
-
|
|
38
|
+
- 'sql.js*'
|
|
39
|
+
- 'better-sqlite3*'
|
|
40
40
|
update-types:
|
|
41
|
-
-
|
|
42
|
-
-
|
|
41
|
+
- 'minor'
|
|
42
|
+
- 'patch'
|
|
43
43
|
build-tools:
|
|
44
44
|
patterns:
|
|
45
|
-
-
|
|
46
|
-
-
|
|
47
|
-
-
|
|
45
|
+
- 'typescript*'
|
|
46
|
+
- 'tsup*'
|
|
47
|
+
- '@types/*'
|
|
48
48
|
update-types:
|
|
49
|
-
-
|
|
50
|
-
-
|
|
49
|
+
- 'minor'
|
|
50
|
+
- 'patch'
|
|
51
51
|
linting:
|
|
52
52
|
patterns:
|
|
53
|
-
-
|
|
54
|
-
-
|
|
55
|
-
-
|
|
53
|
+
- 'eslint*'
|
|
54
|
+
- '@eslint/*'
|
|
55
|
+
- 'typescript-eslint*'
|
|
56
56
|
update-types:
|
|
57
|
-
-
|
|
58
|
-
-
|
|
57
|
+
- 'minor'
|
|
58
|
+
- 'patch'
|
|
59
59
|
|
|
60
60
|
# GitHub Actions
|
|
61
|
-
- package-ecosystem:
|
|
62
|
-
directory:
|
|
61
|
+
- package-ecosystem: 'github-actions'
|
|
62
|
+
directory: '/'
|
|
63
63
|
schedule:
|
|
64
|
-
interval:
|
|
65
|
-
day:
|
|
66
|
-
time:
|
|
67
|
-
timezone:
|
|
64
|
+
interval: 'weekly'
|
|
65
|
+
day: 'monday'
|
|
66
|
+
time: '10:00'
|
|
67
|
+
timezone: 'America/New_York'
|
|
68
68
|
open-pull-requests-limit: 5
|
|
69
69
|
reviewers:
|
|
70
|
-
-
|
|
70
|
+
- 'neverinfamous'
|
|
71
71
|
labels:
|
|
72
|
-
-
|
|
73
|
-
-
|
|
72
|
+
- 'dependencies'
|
|
73
|
+
- 'github-actions'
|
|
74
74
|
groups:
|
|
75
75
|
actions:
|
|
76
76
|
patterns:
|
|
77
|
-
-
|
|
77
|
+
- 'actions/*'
|
|
78
78
|
update-types:
|
|
79
|
-
-
|
|
80
|
-
-
|
|
79
|
+
- 'minor'
|
|
80
|
+
- 'patch'
|
|
81
81
|
|
|
82
82
|
# Docker dependencies
|
|
83
|
-
- package-ecosystem:
|
|
84
|
-
directory:
|
|
83
|
+
- package-ecosystem: 'docker'
|
|
84
|
+
directory: '/'
|
|
85
85
|
schedule:
|
|
86
|
-
interval:
|
|
87
|
-
day:
|
|
88
|
-
time:
|
|
89
|
-
timezone:
|
|
86
|
+
interval: 'weekly'
|
|
87
|
+
day: 'tuesday'
|
|
88
|
+
time: '09:00'
|
|
89
|
+
timezone: 'America/New_York'
|
|
90
90
|
open-pull-requests-limit: 3
|
|
91
91
|
reviewers:
|
|
92
|
-
-
|
|
92
|
+
- 'neverinfamous'
|
|
93
93
|
labels:
|
|
94
|
-
-
|
|
95
|
-
-
|
|
94
|
+
- 'dependencies'
|
|
95
|
+
- 'docker'
|