ember-cli-mcp

stefanoamorelli/ember-cli-mcp

3.2

If you are the rightful owner of ember-cli-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The ember-cli-mcp is a Model Context Protocol (MCP) server that allows MCP clients to execute Ember CLI commands directly within projects, streamlining development workflows.

ember-cli-mcp

npm version License: MIT MCP

Allow MCP clients like Claude Code to run Ember CLI commands directly in your projects.

What is this?

This MCP server lets any MCP client (like Claude Code) execute Ember CLI commands. No more copy-pasting commands or switching between terminals - just ask Claude to run your tests, generate components, or build your app.

Quick Start

With Claude Code

Install globally first:

npm install -g ember-cli-mcp
claude mcp add ember-cli -s user -- ember-cli-mcp

Manual Configuration

If you prefer to configure manually, add to your MCP settings:

{
  "ember-cli": {
    "command": "npx",
    "args": ["ember-cli-mcp"]
  }
}

That's it. Now you can tell Claude: "run my tests" or "generate a component called user-card".

Key Features

Test Filtering

Run specific tests with powerful filtering options:

OptionDescriptionExample
filterFilter by test name"authentication"
moduleFilter by module"Unit | Service"
launchBrowser selection"Chrome,Firefox"
reporterOutput format"tap", "dot", "xunit"
serverKeep runningtrue
silentHide outputtrue

Example:

ember_test({ 
  filter: "authentication",
  module: "Unit | Service",
  cwd: "/path/to/your/project"
})

All Commands

CommandDescription
ember_newCreate new apps
ember_serveStart dev server
ember_buildBuild for production
ember_testRun tests (with filters!)
ember_generateGenerate components, routes, services, etc.
ember_destroyRemove generated code
ember_installInstall addons
ember_project_infoGet project details
ember_list_addonsSee installed addons
ember_list_blueprintsAvailable blueprints
ember_run_commandRun any Ember CLI command

Every command supports the cwd parameter to work with different projects.

Examples

Ask Claude things like:

  • "Run the authentication tests"
  • "Generate a TypeScript service called notifications"
  • "Build my app for production"
  • "What addons are installed?"
  • "Start the dev server on port 3000"

Claude will use the MCP server to actually run these commands in your project.

Working with Multiple Projects

Every command accepts a cwd parameter:

// Test project A
ember_test({ 
  filter: "user",
  cwd: "/projects/app-a"
})

// Build project B
ember_build({
  environment: "production",
  cwd: "/projects/app-b"
})

Blueprints

All 40+ Ember blueprints are supported:

CategoryBlueprints
Componentscomponent, component-class, component-test, template
Routesroute, controller, route-test, controller-test
Servicesservice, helper, service-test, helper-test
Datamodel, adapter, serializer, transform
Testsacceptance-test, integration-test, unit-test
Utilitiesutil, mixin, initializer, instance-initializer
Infrastructureaddon, lib, server, blueprint

Installation from Source

If you want to hack on this:

git clone https://github.com/stefanoamorelli/ember-cli-mcp.git
cd ember-cli-mcp
npm install
npm run build
npm link

Requirements

Contributing

Found a bug? Want a feature? PRs welcome!

License

MIT © 2025 Stefano Amorelli