feishu user plugin for VS Code
io.github.ethanqc/feishu-user-plugin
Feishu/Lark MCP server + CLI tool. 85 tools, 3 auth layers. Send as user via cookie+protobuf.
client:VS Code
transport:stdio
runtime:npm
Install feishu user plugin in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "lark-cookie",
"description": "LARK_COOKIE",
"password": true
},
{
"type": "promptString",
"id": "lark-app-id",
"description": "LARK_APP_ID",
"password": true
},
{
"type": "promptString",
"id": "lark-app-secret",
"description": "LARK_APP_SECRET",
"password": true
},
{
"type": "promptString",
"id": "lark-user-access-token",
"description": "LARK_USER_ACCESS_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "lark-user-refresh-token",
"description": "LARK_USER_REFRESH_TOKEN",
"password": true
}
],
"servers": {
"feishu-user-plugin": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"feishu-user-plugin"
],
"env": {
"LARK_COOKIE": "${input:lark-cookie}",
"LARK_APP_ID": "${input:lark-app-id}",
"LARK_APP_SECRET": "${input:lark-app-secret}",
"LARK_USER_ACCESS_TOKEN": "${input:lark-user-access-token}",
"LARK_USER_REFRESH_TOKEN": "${input:lark-user-refresh-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs