cwa mcp server for VS Code
io.github.gary2376/cwa-mcp-server
MCP server for Taiwan CWA open data: weather forecast, earthquake, warnings, typhoon.
client:VS Code
transport:stdio
runtime:pypi
Install cwa mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "cwa-api-key",
"description": "CWA_API_KEY",
"password": true
}
],
"servers": {
"cwa-mcp-server": {
"type": "stdio",
"command": "uvx",
"args": [
"cwa-mcp-server"
],
"env": {
"CWA_API_KEY": "${input:cwa-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