mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
- Add autonomous knowledge storage with MCP memory tools - Implement task capture system for user-assigned TODOs - Enable cross-session persistence of architectural decisions - Add task status tracking (pending, in-progress, blocked, completed) - Update CLAUDE.md with context-manager capabilities - Configure memory MCP server in .mcp.json - Document seven entity types for knowledge graph - Add proactive task reminders at session start
30 lines
649 B
JSON
30 lines
649 B
JSON
{
|
|
"mcpServers": {
|
|
"context7": {
|
|
"type": "sse",
|
|
"url": "https://mcp.context7.com/sse"
|
|
},
|
|
"nx-mcp": {
|
|
"type": "stdio",
|
|
"command": "npx",
|
|
"args": ["nx-mcp@latest"]
|
|
},
|
|
"angular-mcp": {
|
|
"type": "stdio",
|
|
"command": "npx",
|
|
"args": ["@angular/cli", "mcp"]
|
|
},
|
|
"figma-desktop": {
|
|
"type": "http",
|
|
"url": "http://127.0.0.1:3845/mcp"
|
|
},
|
|
"memory": {
|
|
"command": "npx",
|
|
"args": ["-y", "@modelcontextprotocol/server-memory"],
|
|
"env": {
|
|
"MEMORY_FILE_PATH": "~/Projects/ISA-Frontend/memory.json"
|
|
}
|
|
}
|
|
}
|
|
}
|