Vocabit for VS Code
io.github.johnbilousov/vocabit-mcp
Create flashcard sets in the Vocabit app and read back how the learner actually did.
client:VS Code
transport:stdio
runtime:npm
Install Vocabit in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "vocabit-base-url",
"description": "VOCABIT_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "vocabit-agent-key",
"description": "VOCABIT_AGENT_KEY",
"password": true
},
{
"type": "promptString",
"id": "vocabit-user-id",
"description": "VOCABIT_USER_ID",
"password": true
}
],
"servers": {
"vocabit-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"vocabit-mcp"
],
"env": {
"VOCABIT_BASE_URL": "${input:vocabit-base-url}",
"VOCABIT_AGENT_KEY": "${input:vocabit-agent-key}",
"VOCABIT_USER_ID": "${input:vocabit-user-id}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs