🔧 chore: add MCP server configuration and update gitignore

Add .mcp.json with Context7, Nx MCP, and Angular MCP server configurations.
Remove .mcp.json and .memory.json from gitignore to allow tracking MCP configuration.
This commit is contained in:
Lorenz Hilpert
2025-10-23 17:00:57 +02:00
parent de994234b6
commit 38318405c3
2 changed files with 18 additions and 3 deletions

18
.mcp.json Normal file
View File

@@ -0,0 +1,18 @@
{
"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"]
}
}
}