Frontmatter
| id | 8320 |
| title | MCP: Optimize Memory Core Database Backup Tools |
| state | Closed |
| labels | enhancementairefactoring |
| assignees | tobiu |
| createdAt | Jan 4, 2026, 6:49 PM |
| updatedAt | Jan 4, 2026, 6:56 PM |
| githubUrl | https://github.com/neomjs/neo/issues/8320 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 8315 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Jan 4, 2026, 6:56 PM |
MCP: Optimize Memory Core Database Backup Tools
tobiu added parent issue #8315 on Jan 4, 2026, 6:49 PM
tobiu assigned to @tobiu on Jan 4, 2026, 6:49 PM

tobiu
Jan 4, 2026, 6:55 PM
Input from neo-agent:
◆ I have consolidated
import_databaseandexport_databaseintomanage_database_backup.
manage_database_backup(action='export')exports the database.manage_database_backup(action='import', ...)imports the database.OpenAPI and tool service mapping have been updated.
tobiu closed this issue on Jan 4, 2026, 6:56 PM
tobiu cross-referenced by #8315 on Jan 4, 2026, 6:56 PM
tobiu cross-referenced by #8321 on Jan 4, 2026, 7:05 PM
To reduce the total tool count and comply with VSCode extension limits (Epic #8315), we will consolidate the database import and export tools.
Scope:
import_databaseandexport_databaseinto a singlemanage_database_backuptool.actionparameter (importorexport).Tasks:
ai/mcp/server/memory-core/openapi.yamlto replace the old tools with the new one.ai/mcp/server/memory-core/services/toolService.mjsto map the new tool.ai/mcp/server/memory-core/services/DatabaseService.mjsto support the unified interface.