Skip to content

pulse8 ai cortex knowledge vault for VS Code

io.github.synpulse8-opensource/pulse8-ai-cortex-knowledge-vault

Agent-native knowledge OS on Markdown: typed graph, hybrid search, and compiler over MCP.

client:VS Code transport:stdio runtime:pypi

Install pulse8 ai cortex knowledge vault in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cortex-vault-path",
      "description": "CORTEX_VAULT_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cortex-llm-api-key",
      "description": "CORTEX_LLM_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "pulse8-ai-cortex-knowledge-vault": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "pulse8-ai-cortex-knowledge-vault"
      ],
      "env": {
        "CORTEX_VAULT_PATH": "${input:cortex-vault-path}",
        "CORTEX_LLM_API_KEY": "${input:cortex-llm-api-key}"
      }
    }
  }
}

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

pulse8 ai cortex knowledge vault in other clients