Skip to content
VS Code

planetary agents for VS Code

io.github.gregcastro23/planetary-agents

Converse with planetary-agent personas, council feeds & culinary debates from alchm.kitchen

client:VS Code transport:stdio runtime:pypi

Install planetary agents in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "planetary-agents-backend-url",
      "description": "PLANETARY_AGENTS_BACKEND_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "planetary-agents-frontend-url",
      "description": "PLANETARY_AGENTS_FRONTEND_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "planetary-agents-mcp-model-tier",
      "description": "PLANETARY_AGENTS_MCP_MODEL_TIER",
      "password": true
    }
  ],
  "servers": {
    "planetary-agents": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "alchm-planetary-agents-mcp"
      ],
      "env": {
        "PLANETARY_AGENTS_BACKEND_URL": "${input:planetary-agents-backend-url}",
        "PLANETARY_AGENTS_FRONTEND_URL": "${input:planetary-agents-frontend-url}",
        "PLANETARY_AGENTS_MCP_MODEL_TIER": "${input:planetary-agents-mcp-model-tier}"
      }
    }
  }
}

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

planetary agents in other clients