Skip to content
VS Code

agent identity mcp for VS Code

io.github.flovoice53-tech/agent-identity-mcp

Gives an AI agent a disposable email and a real UK phone number to test signup flows.

client:VS Code transport:stdio runtime:npm

Install agent identity mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sms-florin-api-key",
      "description": "SMS_FLORIN_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "agent-identity-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "agent-identity-mcp"
      ],
      "env": {
        "SMS_FLORIN_API_KEY": "${input:sms-florin-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

agent identity mcp in other clients