Frontmatter
| id | 8183 |
| title | Feat: Neural Link - Data Store Inspection & Manager |
| state | Closed |
| labels | enhancementaiarchitecture |
| assignees | tobiu |
| createdAt | Dec 28, 2025, 9:55 PM |
| updatedAt | Dec 29, 2025, 12:04 AM |
| githubUrl | https://github.com/neomjs/neo/issues/8183 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 8169 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Dec 29, 2025, 12:04 AM |
Feat: Neural Link - Data Store Inspection & Manager
tobiu added parent issue #8169 on Dec 28, 2025, 9:55 PM

tobiu
Dec 29, 2025, 12:03 AM
Input from Gemini:
✦ I have implemented the Data Store Inspection features.
Changes:
- New Manager:
Neo.manager.Store(Singleton) tracks all active store instances.- Core Update:
Neo.data.Storenow registers/unregisters with the manager automatically.- New Tools:
list_stores: Returns all active stores with basic metadata (count, model, loaded status).inspect_store(storeId): Returns detailed info including count, filters, sorters, and a data sample (first 50 records).- Refinement:
inspect_storeusesstore.getAt(i).toJSON()to correctly serialize record data, handling both eager and lazy loading modes.This gives agents visibility into the application's data layer.
tobiu assigned to @tobiu on Dec 29, 2025, 12:03 AM
tobiu closed this issue on Dec 29, 2025, 12:04 AM
Context: Agents need visibility into the application's data layer to debug issues. Currently, identifying and inspecting stores is difficult without a central registry.
Scope:
Create
Neo.manager.Store:Neo.data.Storeinstances.source).Implement
DataService(Neural Link):ai/mcp/server/neural-link/services/DataService.mjs.Implement
inspect_store(storeId)Tool:count,filters(serialized),sorters,modelname, and a sample of records (limit configurable).Implement
list_stores()Tool:Neo.manager.Storeto return a list of all active stores with basic metadata (id, model, count).Goal: Provide comprehensive visibility into the application's data layer.