Skip to content
VS Code

codelogic mcp server for VS Code

io.github.codelogicincengineering/codelogic-mcp-server

An MCP Server to utilize Codelogic's rich software dependency data in your AI programming assistant.

client:VS Code transport:stdio runtime:pypi

Install codelogic mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "codelogic-server-host",
      "description": "CODELOGIC_SERVER_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "codelogic-username",
      "description": "CODELOGIC_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "codelogic-password",
      "description": "CODELOGIC_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "codelogic-workspace-name",
      "description": "CODELOGIC_WORKSPACE_NAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "codelogic-debug-mode",
      "description": "CODELOGIC_DEBUG_MODE",
      "password": true
    }
  ],
  "servers": {
    "codelogic-mcp-server": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "codelogic-mcp-server"
      ],
      "env": {
        "CODELOGIC_SERVER_HOST": "${input:codelogic-server-host}",
        "CODELOGIC_USERNAME": "${input:codelogic-username}",
        "CODELOGIC_PASSWORD": "${input:codelogic-password}",
        "CODELOGIC_WORKSPACE_NAME": "${input:codelogic-workspace-name}",
        "CODELOGIC_DEBUG_MODE": "${input:codelogic-debug-mode}"
      }
    }
  }
}

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

codelogic mcp server in other clients