Skip to content
VS Code

MidOS - MCP Community Library for VS Code

io.github.midosresearch/midos

Curated knowledge for AI agents — 19K chunks, 121 skills, semantic search via MCP

client:VS Code transport:stdio runtime:pypi

Install MidOS - MCP Community Library in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "midos-api-key",
      "description": "MIDOS_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "midos": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "midos-mcp"
      ],
      "env": {
        "MIDOS_API_KEY": "${input:midos-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

MidOS - MCP Community Library in other clients