fast mcp telegram for VS Code
io.github.alexeyleshchenko/fast-mcp-telegram
Multi-tenant Telegram gateway for AI agents — HTTP+stdio, 8 tools, MTProto User API
client:VS Code
transport:stdio
runtime:pypi
Install fast mcp telegram in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "api-id",
"description": "API_ID",
"password": true
},
{
"type": "promptString",
"id": "api-hash",
"description": "API_HASH",
"password": true
},
{
"type": "promptString",
"id": "server-mode",
"description": "SERVER_MODE",
"password": true
},
{
"type": "promptString",
"id": "session-dir",
"description": "SESSION_DIR",
"password": true
}
],
"servers": {
"fast-mcp-telegram": {
"type": "stdio",
"command": "uvx",
"args": [
"fast-mcp-telegram"
],
"env": {
"API_ID": "${input:api-id}",
"API_HASH": "${input:api-hash}",
"SERVER_MODE": "${input:server-mode}",
"SESSION_DIR": "${input:session-dir}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs