Skip to content
VS Code

AIPost MCP Server for VS Code

io.github.aipost-email/mcp-server

Typed structured messaging for AI agents via AIPost.email with Ed25519 signing

client:VS Code transport:stdio runtime:npm

Install AIPost MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "aipost-api-key",
      "description": "AIPOST_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aipost-ed25519-key-path",
      "description": "AIPOST_ED25519_KEY_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aipost-base-url",
      "description": "AIPOST_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@aipost/mcp-server"
      ],
      "env": {
        "AIPOST_API_KEY": "${input:aipost-api-key}",
        "AIPOST_ED25519_KEY_PATH": "${input:aipost-ed25519-key-path}",
        "AIPOST_BASE_URL": "${input:aipost-base-url}"
      }
    }
  }
}

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

AIPost MCP Server in other clients