avito mcp for VS Code
io.github.elchin92/avito-mcp
MCP server for Avito: chats, listings, orders and analytics, with previews and confirmations.
client:VS Code
transport:stdio
runtime:npm
Install avito mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "client-id",
"description": "Client_id",
"password": true
},
{
"type": "promptString",
"id": "client-secret",
"description": "Client_secret",
"password": true
},
{
"type": "promptString",
"id": "profile-id",
"description": "Profile_id",
"password": true
},
{
"type": "promptString",
"id": "avito-mcp-protocol-era",
"description": "AVITO_MCP_PROTOCOL_ERA",
"password": true
}
],
"servers": {
"avito-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"avito-mcp"
],
"env": {
"Client_id": "${input:client-id}",
"Client_secret": "${input:client-secret}",
"Profile_id": "${input:profile-id}",
"AVITO_MCP_PROTOCOL_ERA": "${input:avito-mcp-protocol-era}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs