Skip to content
VS Code

md md for VS Code

io.github.kedarvartak/md-md

MCP server for md.md - provides team knowledge context to AI assistants

client:VS Code transport:stdio runtime:npm

Install md md in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "md-md-api-key",
      "description": "MD_MD_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "md-md-api-url",
      "description": "MD_MD_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "md-md-team-id",
      "description": "MD_MD_TEAM_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "md-md-workspace-id",
      "description": "MD_MD_WORKSPACE_ID",
      "password": true
    }
  ],
  "servers": {
    "md-md": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "md-md-mcp-server"
      ],
      "env": {
        "MD_MD_API_KEY": "${input:md-md-api-key}",
        "MD_MD_API_URL": "${input:md-md-api-url}",
        "MD_MD_TEAM_ID": "${input:md-md-team-id}",
        "MD_MD_WORKSPACE_ID": "${input:md-md-workspace-id}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

md md in other clients