AgentStack
MCP verified MIT Self-run

Ember Cli Mcp

mcp-stefanoamorelli-ember-cli-mcp Β· by stefanoamorelli

πŸ”₯ MCP (Model Context Protocol) server for Ember.js CLI - AI-powered assistance for Ember development with Claude, ChatGPT, and other LLMs

β€” No reviews yet
0 installs
5 views
0.0% view→install

Install

$ agentstack add mcp-stefanoamorelli-ember-cli-mcp

βœ“ scanned Β· βœ“ verified β€” works with Claude Code, Cursor, and more.

Security review

βœ“ Passed

No issues found. Passed automated security review. Β· v0.1.0 How review works β†’

  • βœ“ Prompt-injection patterns
  • βœ“ Secret / credential exfiltration
  • βœ“ Dangerous shell & filesystem operations
  • βœ“ Untrusted network calls
  • βœ“ Known-malicious package signatures

What it can access

  • βœ“ Network access No
  • βœ“ Filesystem access No
  • βœ“ Shell / process execution No
  • βœ“ Environment & secrets No
  • βœ“ Dynamic code execution No

From automated source analysis of v0.1.0. β€œUsed” means the capability is present in the source β€” more access means more to trust, not that it’s unsafe.

View the full security report β†’

Verified badge

Passed review? Show it. Paste this badge into your README β€” it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-stefanoamorelli-ember-cli-mcp)

Reliability & compatibility

βœ“ Security review passed
0 installs to date
β€” no reviews yet
β—‹ 11mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming β€” see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps β€” measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work β†’
Are you the author of Ember Cli Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

ember-cli-mcp

[](https://www.npmjs.com/package/ember-cli-mcp) [](https://opensource.org/licenses/MIT) [](https://modelcontextprotocol.io)

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

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source β€” we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet β€” be the first.

Versions

  • v0.1.0 Imported from the upstream source.