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

@mhdd_24/angular-mcp-server

v1.0.0

Published

Model Context Protocol server with Angular-native tools for components, routes, architecture analysis, and CRUD generation

Readme

Angular MCP Server

Model Context Protocol tools built for Angular — not generic file search.

License: MIT Version Building in Public

v1.0.0 — Open source under MIT. Works with Cursor, Claude Desktop, and any MCP-compatible client.


Why Angular needs its own MCP Server

Generic MCP servers treat your codebase like a bag of files. Angular applications are not.

Angular projects have structure: components, directives, pipes, routes, lazy-loaded modules, standalone APIs, signals, dependency injection, and template syntax that generic tools cannot reliably parse or reason about.

An Angular-native MCP server gives AI assistants real project intelligence:

| Capability | Generic MCP | Angular MCP Server | |---|---|---| | Find components by selector | ❌ Text search | ✅ Decorator analysis | | Map route → component | ❌ Guess from filenames | ✅ Router config parsing | | Audit enterprise architecture | ❌ | ✅ 7 rules + health score | | Generate CRUD with Kendo UI | ❌ | ✅ Angular 20 + Kendo patterns |


MCP Tools (v1.0.0)

| Tool | Description | |---|---| | get_project_info | Read angular.json and summarize workspace projects | | find_component | Search components by selector, class name, or path | | list_routes | Parse *.routes.ts files into a route tree | | audit_architecture | Enterprise audit: 7 rules, health score, grade (A-F) | | generate_crud | Generate Angular 20 + Kendo UI CRUD scaffold |


Quick Start

Option A — npm (recommended)

npx @mhdd_24/angular-mcp-server

Or install globally:

npm install -g @mhdd_24/angular-mcp-server
angular-mcp-server

Option B — clone from GitHub

git clone https://github.com/Mhdd-24/angular-mcp-server.git
cd angular-mcp-server
npm install
npm run build

Cursor / Claude Desktop MCP config

Using npx (no install):

{
  "mcpServers": {
    "angular-mcp-server": {
      "command": "npx",
      "args": ["-y", "@mhdd_24/angular-mcp-server"]
    }
  }
}

Using a local clone:

{
  "mcpServers": {
    "angular-mcp-server": {
      "command": "node",
      "args": ["/absolute/path/to/angular-mcp-server/dist/index.js"]
    }
  }
}

See examples/cursor-mcp-config.json for a template.


Examples

| Workspace | Demo | |---|---| | basic-standalone | find_component, list_routes | | enterprise-layered | audit_architecture |


Building in Public (series complete)

| # | Topic | Link | |---|---|---| | 1 | Why Angular needs its own MCP Server | Read → | | 2 | Architecture | Read → | | 3 | Live demo: components and routes | Demo → | | 4 | CRUD generation with Kendo UI | Demo → | | 5 | Enterprise architecture audit | Demo → | | 6 | Open-source release and roadmap | Read → |


Roadmap

See ROADMAP.md for planned features:

  • v1.1 — TypeScript AST parser, find_service
  • v1.2analyze_dependencies (DI graph)
  • v1.3 — OpenAPI → services, Kendo dialogs
  • v1.4 — Custom rules, monorepo support

Contributing

Contributions welcome — especially from enterprise Angular teams. See CONTRIBUTING.md.

npm run dev      # watch mode
npm test         # run tests
npm run build    # compile

License

MIT © 2026