actionforge for VS Code
io.github.pritas/actionforge
MCP server for ActionForge: expose your account's tools to Claude and any MCP client.
client:VS Code
transport:stdio
runtime:npm
Install actionforge in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "actionforge-api-key",
"description": "ACTIONFORGE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "actionforge-url",
"description": "ACTIONFORGE_URL",
"password": true
}
],
"servers": {
"actionforge": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"actionforge-mcp"
],
"env": {
"ACTIONFORGE_API_KEY": "${input:actionforge-api-key}",
"ACTIONFORGE_URL": "${input:actionforge-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs