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

@push-based/angular-toolkit-mcp

v0.3.0

Published

A Model Context Protocol server for Angular project analysis and refactoring

Readme

Angular Toolkit MCP

A Model Context Protocol (MCP) server that provides Angular project analysis and refactoring capabilities. This server enables LLMs to analyze Angular projects for component usage patterns, dependency analysis, code quality issues, and provides automated refactoring assistance.

Installation

No installation required! Run directly with npx:

npx @push-based/angular-toolkit-mcp@latest --workspaceRoot=/path/to/workspace --ds.uiRoot=packages/ui

Configuration

Add the server to your MCP client configuration (e.g., Claude Desktop, Cursor, Copilot, Windsurf):

{
  "mcpServers": {
    "angular-toolkit": {
      "command": "npx",
      "args": [
        "@push-based/angular-toolkit-mcp@latest",
        "--workspaceRoot=/absolute/path/to/your/angular/workspace",
        "--ds.uiRoot=packages/ui",
        "--ds.storybookDocsRoot=storybook/docs",
        "--ds.deprecatedCssClassesPath=design-system/component-options.mjs"
      ]
    }
  }
}

Configuration Parameters

Required Parameters

| Parameter | Type | Description | Example | |-----------|------|-------------|---------| | workspaceRoot | Absolute path | Root directory of your Angular workspace | /Users/dev/my-angular-app | | ds.uiRoot | Relative path | Directory containing UI components | packages/ui |

Optional Parameters

| Parameter | Type | Description | Example | |-----------|------|-------------|---------| | ds.storybookDocsRoot | Relative path | Root directory containing Storybook documentation | storybook/docs | | ds.deprecatedCssClassesPath | Relative path | JavaScript file mapping deprecated CSS classes | design-system/component-options.mjs |

Key Features

  • Component Analysis: Detect deprecated CSS classes and component usage violations
  • Safe Refactoring: Generate contracts for safe component refactoring with breaking change detection
  • Dependency Mapping: Map component dependencies across modules, templates, and styles
  • ESLint Integration: Lint Angular files with automatic ESLint configuration discovery
  • Project Analysis: Analyze buildable/publishable libraries and validate import paths
  • Component Documentation: Retrieve component data and documentation, list available components

Available Tools

Component Analysis

  • report-violations - Report deprecated CSS usage in a directory
  • report-deprecated-css - Report deprecated CSS classes found in styling files
  • get-deprecated-css-classes - List deprecated CSS classes for a component
  • list-ds-components - List all available Design System components
  • get-ds-component-data - Get component data including implementation and documentation
  • build-component-usage-graph - Map component imports across the project

Component Contracts

  • build_component_contract - Generate a static surface contract for a component
  • diff_component_contract - Compare before/after contracts for breaking changes
  • list_component_contracts - List all available component contracts

Project Analysis

  • get-project-dependencies - Analyze project dependencies and library configuration
  • lint-changes - Lint changed Angular files using ESLint rules

Requirements

  • Node.js version 18 or higher

Documentation

For comprehensive documentation, guides, and workflows, see the full documentation.

License

MIT License - see the LICENSE file for details.