mcp animenewsnetwork for VS Code
io.github.smeet666/mcp-animenewsnetwork
Search the Anime News Network encyclopedia and read its news wire. No API key.
client:VS Code
transport:stdio
runtime:npm
Install mcp animenewsnetwork in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ann-user-agent",
"description": "ANN_USER_AGENT",
"password": true
},
{
"type": "promptString",
"id": "ann-min-interval-ms",
"description": "ANN_MIN_INTERVAL_MS",
"password": true
},
{
"type": "promptString",
"id": "ann-log-level",
"description": "ANN_LOG_LEVEL",
"password": true
}
],
"servers": {
"mcp-animenewsnetwork": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcp-animenewsnetwork"
],
"env": {
"ANN_USER_AGENT": "${input:ann-user-agent}",
"ANN_MIN_INTERVAL_MS": "${input:ann-min-interval-ms}",
"ANN_LOG_LEVEL": "${input:ann-log-level}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs