Skip to content
VS Code

Neo — AI/ML Engineering for VS Code

io.github.neoresearchai/mcpserver

AI/ML engineering MCP server for Neo — submit tasks, track execution, and retrieve outputs.

client:VS Code transport:stdio runtime:pypi

Install Neo — AI/ML Engineering in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "neo-secret-key",
      "description": "NEO_SECRET_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "neo-environment",
      "description": "NEO_ENVIRONMENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "neo-workspace-dir",
      "description": "NEO_WORKSPACE_DIR",
      "password": true
    }
  ],
  "servers": {
    "mcpserver": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "neo-mcp"
      ],
      "env": {
        "NEO_SECRET_KEY": "${input:neo-secret-key}",
        "NEO_ENVIRONMENT": "${input:neo-environment}",
        "NEO_WORKSPACE_DIR": "${input:neo-workspace-dir}"
      }
    }
  }
}

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

Neo — AI/ML Engineering in other clients