You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "The Memory Bank MCP Server is a Model Context Protocol (MCP) server implementation that provides remote access and management capabilities for memory bank files, enabling multi-project support, consistent file structure, and isolation between projects.",
81
+
"categories": [
82
+
"Knowledge Base"
83
+
],
84
+
"tools": [
85
+
{
86
+
"name": "list_projects",
87
+
"description": "List all projects in the memory bank",
88
+
"inputSchema": {
89
+
"type": "object",
90
+
"properties": {},
91
+
"required": []
92
+
}
93
+
},
94
+
{
95
+
"name": "list_project_files",
96
+
"description": "List all files within a specific project",
97
+
"inputSchema": {
98
+
"type": "object",
99
+
"properties": {
100
+
"projectName": {
101
+
"type": "string",
102
+
"description": "The name of the project"
103
+
}
104
+
},
105
+
"required": [
106
+
"projectName"
107
+
]
108
+
}
109
+
},
110
+
{
111
+
"name": "memory_bank_read",
112
+
"description": "Read a memory bank file for a specific project",
113
+
"inputSchema": {
114
+
"type": "object",
115
+
"properties": {
116
+
"projectName": {
117
+
"type": "string",
118
+
"description": "The name of the project"
119
+
},
120
+
"fileName": {
121
+
"type": "string",
122
+
"description": "The name of the file"
123
+
}
124
+
},
125
+
"required": [
126
+
"projectName",
127
+
"fileName"
128
+
]
129
+
}
130
+
},
131
+
{
132
+
"name": "memory_bank_write",
133
+
"description": "Create a new memory bank file for a specific project",
134
+
"inputSchema": {
135
+
"type": "object",
136
+
"properties": {
137
+
"projectName": {
138
+
"type": "string",
139
+
"description": "The name of the project"
140
+
},
141
+
"fileName": {
142
+
"type": "string",
143
+
"description": "The name of the file"
144
+
},
145
+
"content": {
146
+
"type": "string",
147
+
"description": "The content of the file"
148
+
}
149
+
},
150
+
"required": [
151
+
"projectName",
152
+
"fileName",
153
+
"content"
154
+
]
155
+
}
156
+
},
157
+
{
158
+
"name": "memory_bank_update",
159
+
"description": "Update an existing memory bank file for a specific project",
0 commit comments