Skip to content
VS Code

appCN for VS Code

digital.shineup/appcn

Install & correctly use appCN React Native / Expo components, streamed from the live registry.

client:VS Code transport:stdio runtime:npm

Install appCN in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "appcn-registry-url",
      "description": "APPCN_REGISTRY_URL",
      "password": true
    }
  ],
  "servers": {
    "appcn": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@app-cn/mcp"
      ],
      "env": {
        "APPCN_REGISTRY_URL": "${input:appcn-registry-url}"
      }
    }
  }
}

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

appCN in other clients