Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 17 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,27 @@ Add this to your VS Code MCP config file. See [VS Code MCP docs](https://code.vi
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "ENV0_API_KEY=your-api-key-here",
"-e", "ENV0_API_SECRET=your-api-secret-here",
"-e", "ENV0_API_KEY=${input:ENV0_API_KEY}",
"-e", "ENV0_API_SECRET=${input:ENV0_API_SECRET}",
"-e", "ENV0_ORGANIZATION_ID=your-org-id-here",
"env0/mcp-server"
]
}
}
},
"inputs": [
{
"type": "promptString",
"id": "ENV0_API_KEY",
"description": "Env0 API Key",
"password": true
},
{
"type": "promptString",
"id": "ENV0_API_SECRET",
"description": "Env0 API Secret",
"password": true
}
]
}
}
```
Expand Down