instagit for VS Code
io.github.instagitai/instagit
MCP server for Instagit — AI-powered Git repository analysis for coding agents
client:VS Code
transport:stdio
runtime:npm
Install instagit in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "instagit-api-key",
"description": "INSTAGIT_API_KEY",
"password": true
}
],
"servers": {
"instagit": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"instagit"
],
"env": {
"INSTAGIT_API_KEY": "${input:instagit-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs