Skip to content
VS Code

ossian mcp for VS Code

io.github.dockndevai/ossian-mcp

Ask your own documents with citations, plus durable memory for agents. Safe by default.

client:VS Code transport:stdio runtime:npm

Install ossian mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ossian-url",
      "description": "OSSIAN_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ossian-api-key",
      "description": "OSSIAN_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ossian-agent-id",
      "description": "OSSIAN_AGENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ossian-mode",
      "description": "OSSIAN_MODE",
      "password": true
    }
  ],
  "servers": {
    "ossian-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "ossian-mcp"
      ],
      "env": {
        "OSSIAN_URL": "${input:ossian-url}",
        "OSSIAN_API_KEY": "${input:ossian-api-key}",
        "OSSIAN_AGENT_ID": "${input:ossian-agent-id}",
        "OSSIAN_MODE": "${input:ossian-mode}"
      }
    }
  }
}

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

ossian mcp in other clients