Skip to content
VS Code

idamesh for VS Code

io.github.jordanro2/idamesh

MCP server for IDA Pro: decompiler, disassembler, and analysis tools for MCP clients.

client:VS Code transport:stdio runtime:pypi

Install idamesh in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "idadir",
      "description": "IDADIR",
      "password": true
    }
  ],
  "servers": {
    "idamesh": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "idamesh"
      ],
      "env": {
        "IDADIR": "${input:idadir}"
      }
    }
  }
}

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

idamesh in other clients