Skip to content
VS Code

alphasmo tools for VS Code

io.github.alphasmo/alphasmo-tools

CLI + MCP server for SEC 13F institutional holdings, insider trading, and smart money convergence.

client:VS Code transport:stdio runtime:npm

Install alphasmo tools in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "alphasmo-api-key",
      "description": "ALPHASMO_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "alphasmo-tools": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "alphasmo"
      ],
      "env": {
        "ALPHASMO_API_KEY": "${input:alphasmo-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

alphasmo tools in other clients