Skip to content
VS Code

NIRA File Intel MCP for VS Code

io.github.pachote/nira-file-intel

Smart file intelligence for Claude — search, deduplicate, organize, and analyze files

client:VS Code transport:stdio runtime:pypi

Install NIRA File Intel MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "file-intel-root",
      "description": "FILE_INTEL_ROOT",
      "password": true
    }
  ],
  "servers": {
    "nira-file-intel": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "nira-file-intel"
      ],
      "env": {
        "FILE_INTEL_ROOT": "${input:file-intel-root}"
      }
    }
  }
}

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

NIRA File Intel MCP in other clients