Skip to content
VS Code

AXF for VS Code

dev.smartergpt/axf

Agent eXoskeleton Framework control plane for workspace-native agent capabilities over MCP.

client:VS Code transport:stdio runtime:npm

Install AXF in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "axf-project-root",
      "description": "AXF_PROJECT_ROOT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "axf-execution-root",
      "description": "AXF_EXECUTION_ROOT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "axf-workspace",
      "description": "AXF_WORKSPACE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "axf-registry-workspace",
      "description": "AXF_REGISTRY_WORKSPACE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "axf-execution-workspace",
      "description": "AXF_EXECUTION_WORKSPACE",
      "password": true
    }
  ],
  "servers": {
    "axf": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@smartergpt/axf"
      ],
      "env": {
        "AXF_PROJECT_ROOT": "${input:axf-project-root}",
        "AXF_EXECUTION_ROOT": "${input:axf-execution-root}",
        "AXF_WORKSPACE": "${input:axf-workspace}",
        "AXF_REGISTRY_WORKSPACE": "${input:axf-registry-workspace}",
        "AXF_EXECUTION_WORKSPACE": "${input:axf-execution-workspace}"
      }
    }
  }
}

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

AXF in other clients