api-changelog for VS Code
io.github.weiseer/api-changelog
SDK breaking-change tracker for AI agents — Anthropic/OpenAI/LangChain/MCP/Mistral.
client:VS Code
transport:stdio
runtime:npm
Install api-changelog in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "api-changelog-url",
"description": "API_CHANGELOG_URL",
"password": true
},
{
"type": "promptString",
"id": "api-changelog-local-only",
"description": "API_CHANGELOG_LOCAL_ONLY",
"password": true
}
],
"servers": {
"api-changelog": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@weiseer/api-changelog-mcp"
],
"env": {
"API_CHANGELOG_URL": "${input:api-changelog-url}",
"API_CHANGELOG_LOCAL_ONLY": "${input:api-changelog-local-only}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs