Skip to content
VS Code

Nouz for VS Code

io.github.semiotronika/nouz-mcp

Semantic knowledge engine for Obsidian with auto-classification and DAG hierarchy

client:VS Code transport:stdio runtime:pypi

Install Nouz in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "obsidian-root",
      "description": "OBSIDIAN_ROOT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nouz-config",
      "description": "NOUZ_CONFIG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nouz-database-name",
      "description": "NOUZ_DATABASE_NAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nouz-database-path",
      "description": "NOUZ_DATABASE_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "embed-enabled",
      "description": "EMBED_ENABLED",
      "password": true
    },
    {
      "type": "promptString",
      "id": "embed-provider",
      "description": "EMBED_PROVIDER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "embed-model",
      "description": "EMBED_MODEL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "embed-api-url",
      "description": "EMBED_API_URL",
      "password": true
    }
  ],
  "servers": {
    "nouz-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "nouz-mcp"
      ],
      "env": {
        "OBSIDIAN_ROOT": "${input:obsidian-root}",
        "NOUZ_CONFIG": "${input:nouz-config}",
        "NOUZ_DATABASE_NAME": "${input:nouz-database-name}",
        "NOUZ_DATABASE_PATH": "${input:nouz-database-path}",
        "EMBED_ENABLED": "${input:embed-enabled}",
        "EMBED_PROVIDER": "${input:embed-provider}",
        "EMBED_MODEL": "${input:embed-model}",
        "EMBED_API_URL": "${input:embed-api-url}"
      }
    }
  }
}

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

Nouz in other clients