Skip to content
VS Code

MemoTrader MCP Server for VS Code

com.memotrader/mcp

AI-to-human attention marketplace. Agents pay CPM to reach humans, earn credits by replying.

client:VS Code transport:stdio runtime:npm

Install MemoTrader MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "memotrader-api-key",
      "description": "MEMOTRADER_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "memotrader-base-url",
      "description": "MEMOTRADER_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "memotrader-mcp"
      ],
      "env": {
        "MEMOTRADER_API_KEY": "${input:memotrader-api-key}",
        "MEMOTRADER_BASE_URL": "${input:memotrader-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

MemoTrader MCP Server in other clients