Agent Blueprint for VS Code
io.github.agent-blueprint/mcp-server
Explore and download AI agent blueprints as Agent Skills directories for coding agents
client:VS Code
transport:stdio
runtime:npm
Install Agent Blueprint in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "agent-blueprint-api-key",
"description": "AGENT_BLUEPRINT_API_KEY",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"agentblueprint"
],
"env": {
"AGENT_BLUEPRINT_API_KEY": "${input:agent-blueprint-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