Skip to content
VS Code

lynxprompt mcp for VS Code

io.github.geiserx/lynxprompt-mcp

MCP server for LynxPrompt — browse, search, and manage AI configuration blueprints

client:VS Code transport:stdio runtime:npm

Install lynxprompt mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "lynxprompt-url",
      "description": "LYNXPROMPT_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "lynxprompt-token",
      "description": "LYNXPROMPT_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "lynxprompt-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "lynxprompt-mcp"
      ],
      "env": {
        "LYNXPROMPT_URL": "${input:lynxprompt-url}",
        "LYNXPROMPT_TOKEN": "${input:lynxprompt-token}"
      }
    }
  }
}

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

lynxprompt mcp in other clients