Skip to content
VS Code

PlanVortex for VS Code

io.github.taliasoftworks/planvortex

Schedule posts, read comments and answer messages across all your social networks.

client:VS Code transport:stdio runtime:npm

Install PlanVortex in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "planvortex-client-id",
      "description": "PLANVORTEX_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "planvortex-client-secret",
      "description": "PLANVORTEX_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "planvortex-organization-id",
      "description": "PLANVORTEX_ORGANIZATION_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "planvortex-mcp-upload-dirs",
      "description": "PLANVORTEX_MCP_UPLOAD_DIRS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "planvortex-mcp-read-only",
      "description": "PLANVORTEX_MCP_READ_ONLY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "planvortex-mcp-allow-ai",
      "description": "PLANVORTEX_MCP_ALLOW_AI",
      "password": true
    }
  ],
  "servers": {
    "planvortex": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "planvortex-mcp"
      ],
      "env": {
        "PLANVORTEX_CLIENT_ID": "${input:planvortex-client-id}",
        "PLANVORTEX_CLIENT_SECRET": "${input:planvortex-client-secret}",
        "PLANVORTEX_ORGANIZATION_ID": "${input:planvortex-organization-id}",
        "PLANVORTEX_MCP_UPLOAD_DIRS": "${input:planvortex-mcp-upload-dirs}",
        "PLANVORTEX_MCP_READ_ONLY": "${input:planvortex-mcp-read-only}",
        "PLANVORTEX_MCP_ALLOW_AI": "${input:planvortex-mcp-allow-ai}"
      }
    }
  }
}

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

PlanVortex in other clients