markdown notes mcp for VS Code
io.github.narashiman-k/markdown-notes-mcp
Convert PDF, Word, Excel, PowerPoint, EPUB and images to Markdown locally, with no upload.
client:VS Code
transport:stdio
runtime:npm
Install markdown notes mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "markdown-mcp-roots",
"description": "MARKDOWN_MCP_ROOTS",
"password": true
},
{
"type": "promptString",
"id": "gemini-api-key",
"description": "GEMINI_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "assemblyai-api-key",
"description": "ASSEMBLYAI_API_KEY",
"password": true
}
],
"servers": {
"markdown-notes-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"suprasuta-markdown-mcp"
],
"env": {
"MARKDOWN_MCP_ROOTS": "${input:markdown-mcp-roots}",
"GEMINI_API_KEY": "${input:gemini-api-key}",
"ASSEMBLYAI_API_KEY": "${input:assemblyai-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