Installation process
To install servers, there’s a central concept for both Claude and VS Code, namely, the mcp.json file. This file is your main configuration file where you add information on where the servers are and additional configuration needed. In fact, this JSON file acts like a manifest file for what servers are installed. The act of installing a file means adding an entry to this file. Here’s an example of an mcp.json file:
{
"inputs": [
],
"servers": {
"docs": {
"type": "http",
"url": "https://learn.microsoft.com/api/mcp"
}
}
}
Quick tip: Enhance your coding experience with the AI Code Explainer and Quick Copy features. Open this book in the next-gen Packt Reader. Click the Copy button
(1) to quickly copy code into your coding environment, or click the Explain button
(2) to get the AI assistant...