Installation
This guide walks you through getting the MCP Prefactor demo code on your machine and installing the required dependencies.
Clone the repository
Section titled “Clone the repository”Start by cloning the demo repository:
git clone https://github.com/prefactordev/mcp-prefactor-demo.gitcd mcp-prefactor-demoInstall dependencies
Section titled “Install dependencies”The demo uses mise to manage Node.js and pnpm versions. If you have mise installed, run:
mise installThis will install the correct versions of Node.js and pnpm as specified in the project’s mise.toml file.
If you don’t have mise, you can install Node.js and pnpm manually. Check the mise.toml file for the required versions.
Once Node.js and pnpm are available, install the project dependencies:
pnpm installThis will download all the packages needed to run the demo.