Ani MCP for VS Code
io.github.gavxm/ani-mcp
A smart MCP server for AniList that gets your anime/manga taste - not just API calls.
client:VS Code
transport:stdio
runtime:npm
Install Ani MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "anilist-username",
"description": "ANILIST_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "anilist-token",
"description": "ANILIST_TOKEN",
"password": true
}
],
"servers": {
"ani-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"ani-mcp"
],
"env": {
"ANILIST_USERNAME": "${input:anilist-username}",
"ANILIST_TOKEN": "${input:anilist-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs