Frontmatter
| id | 8316 |
| title | MCP: Optimize Memory Core Tool Count |
| state | Closed |
| labels | airefactoring |
| assignees | tobiu |
| createdAt | Jan 4, 2026, 5:24 PM |
| updatedAt | Jan 4, 2026, 5:31 PM |
| githubUrl | https://github.com/neomjs/neo/issues/8316 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 8315 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Jan 4, 2026, 5:31 PM |
MCP: Optimize Memory Core Tool Count
tobiu added parent issue #8315 on Jan 4, 2026, 5:24 PM
tobiu assigned to @tobiu on Jan 4, 2026, 5:30 PM

tobiu
Jan 4, 2026, 5:31 PM
Input from Gemini:
✦ I have successfully refactored the Memory Core MCP server to consolidate the
start_databaseandstop_databasetools into a singlemanage_databasetool with anactionparameter. This change reduces the tool count by 1.Changes:
- Modified
openapi.yaml: Replaced/db/startand/db/stoppaths with/db/manage.- Updated
DatabaseLifecycleService.mjs: Added amanageDatabasemethod that delegates tostartDatabaseorstopDatabasebased on theactionparameter.- Updated
toolService.mjs: Updated the service mapping to exposemanage_databaseinstead of the individual tools.Next Steps: Proceed with the Knowledge Base tool optimization (#8317).
tobiu closed this issue on Jan 4, 2026, 5:31 PM
Consolidate
start_databaseandstop_databaseinto a singlemanage_databasetool with anactionparameter ('start' | 'stop').