Files
ISA-Frontend/.mcp.json
Lorenz Hilpert f7209dd0a3 🔧 chore: add Figma Desktop MCP server configuration
Configure Figma Desktop MCP server for design-to-code workflows:
- HTTP connection on localhost:3845
- Enables design context and code generation from Figma
2025-10-23 19:00:32 +02:00

23 lines
445 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"
}
}
}