Skip to content
VS Code

jsc typescript ast mcp for VS Code

io.github.jscoobyced/jsc-typescript-ast-mcp

AST for TypeScript, supports creating JSON representations of React components

client:VS Code transport:stdio runtime:npm

Install jsc typescript ast mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "project-tsconfig-path",
      "description": "PROJECT_TSCONFIG_PATH",
      "password": true
    }
  ],
  "servers": {
    "jsc-typescript-ast-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "jsc-typescript-ast-mcp"
      ],
      "env": {
        "PROJECT_TSCONFIG_PATH": "${input:project-tsconfig-path}"
      }
    }
  }
}

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

jsc typescript ast mcp in other clients