Skip to content
VS Code

five46 for VS Code

io.github.sekharsdet/five46

BYOK, fully local AI agent that tests your app/API and writes a real Playwright spec on success.

client:VS Code transport:stdio runtime:npm

Install five46 in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "five46-llm-provider",
      "description": "FIVE46_LLM_PROVIDER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "five46-llm-api-key",
      "description": "FIVE46_LLM_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "five46-mcp-allow-writes",
      "description": "FIVE46_MCP_ALLOW_WRITES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "five46-mcp-allow-deletes",
      "description": "FIVE46_MCP_ALLOW_DELETES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "five46-mcp-concurrency",
      "description": "FIVE46_MCP_CONCURRENCY",
      "password": true
    }
  ],
  "servers": {
    "five46": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "five46"
      ],
      "env": {
        "FIVE46_LLM_PROVIDER": "${input:five46-llm-provider}",
        "FIVE46_LLM_API_KEY": "${input:five46-llm-api-key}",
        "FIVE46_MCP_ALLOW_WRITES": "${input:five46-mcp-allow-writes}",
        "FIVE46_MCP_ALLOW_DELETES": "${input:five46-mcp-allow-deletes}",
        "FIVE46_MCP_CONCURRENCY": "${input:five46-mcp-concurrency}"
      }
    }
  }
}

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

five46 in other clients