Runable v1.0.0-alpha.20
Why Runable? Docs Modules Work with AI Blog About Changelog
  • 01Why Runable?
  • 02Docs
  • 03Modules
  • 04Work with AI
  • 05Blog
  • 06About
  • 07Changelog
Vue without a fixed server runtime.
Getting Started Structure Integrations Guide MCP API
  • Getting Started Structure Integrations Guide MCP API
  • Installation
  • Client Setup
  • Tools
  • Security
  • Compatibility
  • Troubleshooting

Runable MCP

Give AI coding agents a live, structured, and read-only view of a Runable project.

The official Runable Model Context Protocol server connects an MCP-compatible coding agent to the project it is working on. Instead of inferring routes or configuration from filenames alone, the agent can ask Runable how it currently resolves the application.

AI coding agent
      │
      │ MCP over stdio
      ▼
@runablejs/mcp
      │
      │ public inspection API
      ▼
runable/inspector
      │
      ▼
Your Runable project

@runablejs/mcp is a thin protocol adapter. It resolves runable/inspector from the target project's own node_modules, so the information it returns comes from the Runable version installed in that project.

What the server provides

The server exposes eight read-only tools:

NeedTool
Identify the project and its resolved pathsget_project
Read the resolved public configurationget_config
Inspect the route treeget_routes
List layouts, middleware, plugins, modules, and auto-importsget_extensions
Match a URL using the project's router rulesresolve_route
Find structural problemsdiagnose
Search the Runable documentation locallysearch_api
Reload inspection state after a changerefresh

Read MCP Tools for inputs, outputs, and usage examples.

MCP and Agent Skills

These features solve different problems and work well together:

FeatureAnswers
Agent Skills“How should I implement this with Runable?”
Runable MCP“How is this project configured right now?”

Agent Skills provide procedural instructions and framework conventions. MCP provides current project facts. Install the Skills from AI Skills, then connect the MCP server for project-aware inspection.

Start here

  1. Install the MCP package in the Runable project.
  2. Connect your coding agent using its project configuration.
  3. Ask the agent to call get_project and confirm that rootDir points to the intended project.
Local by design

The server uses stdio. It does not open an HTTP port, send project data to a Runable service, or require a Runable account. Your MCP client decides which model receives tool results.

Report an issue Edit this page
Inspector

Programmatically inspect how Runable resolves a project — routes, layouts, middleware, plugins, modules, and auto-imports.

Installation

Install the project-local Runable MCP server and verify that it starts against the correct project.

On this page

  • 1What the server provides
  • 2MCP and Agent Skills
  • 3Start here
Runable

The Vue framework that brings productive conventions to any backend.

Product

  • Why Runable
  • Documentation
  • Installation
  • Integrations

Project

  • About
  • Blog
  • Changelog
  • Sponsor

Community

  • GitHub
  • Issues
  • Discussions
  • Bluesky

© 2026 Runable. Released under the MIT License.

Open source Built with Vue and Runable