Skip to content
VS Code

AgentForge for VS Code

org.sciscale/agentforge-mcp

Turn rough requests into rigorously structured prompts, for any coding agent.

client:VS Code transport:stdio runtime:npm

Install AgentForge in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "agentforge-api-key",
      "description": "AGENTFORGE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "agentforge-api-url",
      "description": "AGENTFORGE_API_URL",
      "password": true
    }
  ],
  "servers": {
    "agentforge-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "agentforge-mcp"
      ],
      "env": {
        "AGENTFORGE_API_KEY": "${input:agentforge-api-key}",
        "AGENTFORGE_API_URL": "${input:agentforge-api-url}"
      }
    }
  }
}

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

AgentForge in other clients