mcp-frontend-starter

No description

GitHub Stars

30

User Rating

Not Rated

Favorites

0

Views

26

Forks

7

Issues

2

Installation
Difficulty
Intermediate
Estimated Time
10-20 minutes

Installation

Prerequisite: VS Code Insiders (version 1.99 or later) with GitHub Copilot pre-release installed. (👋 Welcome to our early adopter audience!) Already set up, but feel to edit and add:
1Servers in .vscode/mcp.json are shared as configurations with all repo collaborators:
- "servers": {} follows Claude's structure for claude_desktop_config.json - "inputs": [] lets you define custom placeholders for configurations, avoiding hardcoded secrets ```jsonc // Example .vscode/mcp.json { // 💡 Inputs will be prompted on first server start, // then stored securely by VS Code. "inputs": [ { "type": "promptString", "id": "perplexity-key", "password": true, // Encrypted at-rest "description": "Perplexity API Key" } ], // "servers": {

Additional Resources