MCP Installation
Install the project-local Runable MCP server and verify that it starts against the correct project.
Install the MCP package as a development dependency of the Runable project you want to inspect:
pnpm add -D @runablejs/mcpnpm install --save-dev @runablejs/mcpyarn add --dev @runablejs/mcpbun add --dev @runablejs/mcprunable must already be installed in the same project. The MCP package deliberately does not bundle its own copy: it uses the project's runable/inspector export as its source of truth.
Start through the Runable CLI
Use the Runable CLI integration when configuring an MCP client:
runable mcpThe command resolves @runablejs/mcp from the current project and starts it over stdio. It does not install the package automatically.
Point it at another project with --cwd:
runable mcp --cwd /absolute/path/to/projectUse an absolute path in MCP client configuration. Clients do not always launch their child processes from the workspace directory.
Start the package directly
The package also provides its own executable:
runable-mcp --cwd /absolute/path/to/projectUse this form when the installed @runablejs/cli version does not include runable mcp.
Requirements
- Node.js
^22.18.0or>=24.12.0. - A local
runableinstallation that exportsrunable/inspector. - An MCP client that supports local
stdioservers. - A trusted Runable project. Resolving its configuration executes project-owned configuration and module setup code.
Check Compatibility before combining prerelease versions.
Verify the installation
The MCP command is a protocol process, not an interactive application. A successful process waits for MCP messages and may appear to do nothing when started directly.
After connecting a client, verify the setup in this order:
- Confirm that the server exposes eight tools.
- Call
get_project. - Check that
rootDiris the intended project directory. - Call
get_routesand confirm that it returns the current pages. - Call
search_apiwithuseAsyncData.
Continue with Client Setup to connect Codex, Claude Code, Cursor, or GitHub Copilot.
On this page