mcp bookmark for VS Code
io.github.pree-dew/mcp-bookmark
MCP Server for adding bookmarks in openai RAG
client:VS Code
transport:stdio
runtime:pypi
Install mcp bookmark in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "openai-api-key",
"description": "OPENAI_API_KEY",
"password": true
}
],
"servers": {
"mcp-bookmark": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-bookmark-server"
],
"env": {
"OPENAI_API_KEY": "${input:openai-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs