aiogram-mcp for VS Code
io.github.py2755/aiogram-mcp
MCP server for aiogram Telegram bots — 30 tools, 7 resources, 3 prompts, event streaming
client:VS Code
transport:stdio
runtime:pypi
Install aiogram-mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "bot-token",
"description": "BOT_TOKEN",
"password": true
}
],
"servers": {
"aiogram-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"aiogram-mcp"
],
"env": {
"BOT_TOKEN": "${input:bot-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs