npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

ember-cli-mcp

v0.5.1

Published

MCP server for Ember CLI commands and utilities

Readme

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:

| Option | Description | Example | |--------|-------------|---------| | filter | Filter by test name | "authentication" | | module | Filter by module | "Unit \| Service" | | launch | Browser selection | "Chrome,Firefox" | | reporter | Output format | "tap", "dot", "xunit" | | server | Keep running | true | | silent | Hide output | true |

Example:

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

All Commands

| Command | Description | |---------|-------------| | ember_new | Create new apps | | ember_serve | Start dev server | | ember_build | Build for production | | ember_test | Run tests (with filters!) | | ember_generate | Generate components, routes, services, etc. | | ember_destroy | Remove generated code | | ember_install | Install addons | | ember_project_info | Get project details | | ember_list_addons | See installed addons | | ember_list_blueprints | Available blueprints | | ember_run_command | Run 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:

| Category | Blueprints | |----------|------------| | Components | component, component-class, component-test, template | | Routes | route, controller, route-test, controller-test | | Services | service, helper, service-test, helper-test | | Data | model, adapter, serializer, transform | | Tests | acceptance-test, integration-test, unit-test | | Utilities | util, mixin, initializer, instance-initializer | | Infrastructure | addon, 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