{"id":28042839,"url":"https://github.com/talzach/mcp-angular-cli","last_synced_at":"2025-05-11T15:01:34.387Z","repository":{"id":292315810,"uuid":"980499784","full_name":"talzach/mcp-angular-cli","owner":"talzach","description":"Model Context Protocol servers for Angular CLI","archived":false,"fork":false,"pushed_at":"2025-05-09T16:32:55.000Z","size":32,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-09T16:45:22.696Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/talzach.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-09T08:25:37.000Z","updated_at":"2025-05-09T16:32:58.000Z","dependencies_parsed_at":"2025-05-09T16:45:24.783Z","dependency_job_id":"e95a5e09-fc01-4280-a0a8-0d832a0cd724","html_url":"https://github.com/talzach/mcp-angular-cli","commit_stats":null,"previous_names":["talzach/mcp-angular-schematics","talzach/mcp-angular-cli"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talzach%2Fmcp-angular-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talzach%2Fmcp-angular-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talzach%2Fmcp-angular-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talzach%2Fmcp-angular-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/talzach","download_url":"https://codeload.github.com/talzach/mcp-angular-cli/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253584490,"owners_count":21931547,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-05-11T15:01:09.074Z","updated_at":"2025-05-11T15:01:34.372Z","avatar_url":"https://github.com/talzach.png","language":"TypeScript","readme":"# Angular CLI MCP Server 🅰️\n\nA Model Context Protocol server that provides Angular CLI and workspace automation capabilities. This server enables LLMs and agents to interact with Angular projects, generate components/services, add packages, create new workspaces, and run custom architect targets via the Angular CLI.\n\n## Features\n\n- Run `ng generate` to scaffold Angular artifacts (components, services, etc.)\n- Run `ng add` to add packages to your Angular workspace\n- Run `ng new` to create new Angular workspaces\n- Run `ng run` to execute custom architect targets\n- Run `ng update` to update Angular packages and dependencies\n\n- All via the Model Context Protocol (MCP) for agent/LLM integration\n\n## Installation\n\nYou can install the package globally using npm:\n\n```bash\nnpm install -g @talzach/mcp-angular-cli\n```\n\nOr use it locally in your project:\n\n```bash\nnpm install --save-dev @talzach/mcp-angular-cli\n```\n\n## Usage\n\nYou can run the server directly:\n\n```bash\nnpx @talzach/mcp-angular-cli\n```\n\nOr, if you want to use it as a custom MCP server in your agent or tool, configure it like this:\n\n### Example MCP Configuration\n\n```json\n{\n  \"mcpServers\": {\n    \"angular-cli\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@talzach/mcp-angular-cli\"]\n    }\n  }\n}\n```\n\n## Example Tool Usage\n\n- **Generate a component:**\n  ```json\n  {\n    \"schematic\": \"component\",\n    \"name\": \"my-component\",\n    \"appRoot\": \"/absolute/path/to/your/angular/project\"\n  }\n  ```\n- **Add a package:**\n  ```json\n  {\n    \"package\": \"@angular/material\",\n    \"appRoot\": \"/absolute/path/to/your/angular/project\"\n  }\n  ```\n- **Create a new workspace:**\n  ```json\n  {\n    \"name\": \"my-workspace\",\n    \"directory\": \"/absolute/path/to/where/you/want/it\"\n  }\n  ```\n- **Run a custom architect target:**\n  ```json\n  {\n    \"target\": \"app:build:production\",\n    \"appRoot\": \"/absolute/path/to/your/angular/project\"\n  }\n  ```\n\n---\n\n**Star this repo if you find it useful!**\n\n## Publishing to npm\n\nTo publish a new version of this package to npm, run:\n\n```bash\nnpm run publish-npm\n```\n\nThis will automatically build the project and publish it as a public package.\n\n## Develop\n\nIf you want to test or develop this server locally, you need to point your MCP server configuration to your local build output. After building the project (e.g., with `npm run build`), set your MCP server file (e.g., `.mcp.json` or similar) to use the local `dist/index.js` file:\n\n```json\n{\n  \"angular-cli\": {\n    \"command\": \"node\",\n    \"args\": [\"/path/to/your/mcp-angular-cli/dist/index.js\"]\n  }\n}\n```\n","funding_links":[],"categories":["Recently Updated","Angular","TypeScript"],"sub_categories":["[May 10, 2025](/content/2025/05/10/README.md)","CLI Tools"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftalzach%2Fmcp-angular-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftalzach%2Fmcp-angular-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftalzach%2Fmcp-angular-cli/lists"}