Skip to content
VS Code

madeforai supplychain skill for VS Code

io.github.amplichina/madeforai-supplychain-skill

MCP connector for human-reviewed manufacturing tasks through MadeForAI hosted fulfillment.

client:VS Code transport:stdio runtime:npm

Install madeforai supplychain skill in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "madeforai-access-token",
      "description": "MADEFORAI_ACCESS_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "madeforai-supplychain-skill": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "madeforai-supplychain-connector"
      ],
      "env": {
        "MADEFORAI_ACCESS_TOKEN": "${input:madeforai-access-token}"
      }
    }
  }
}

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

madeforai supplychain skill in other clients