AccuWeather MCP for VS Code
io.github.jonjam/accuweather-mcp
MCP server providing weather tools with data sourced from AccuWeather.
client:VS Code
transport:stdio
runtime:oci
Install AccuWeather MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "accuweather-api-key",
"description": "ACCUWEATHER_API_KEY",
"password": true
}
],
"servers": {
"accuweather-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/jonjam/accuweather-mcp:1.4.11"
],
"env": {
"ACCUWEATHER_API_KEY": "${input:accuweather-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