
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
realworld-angular-patterns-mcp
Advanced tools
MCP (Model Context Protocol) server that provides enterprise Angular patterns to AI assistants.
cd mcp-server
npm install
npm run build
Add this to your Cursor settings (~/.cursor/mcp_servers.json):
{
"mcpServers": {
"realworld-angular-patterns": {
"command": "node",
"args": ["/path/to/realworld-patterns/mcp-server/dist/index.js"]
}
}
}
Or install globally:
# Install globally
npm install -g realworld-angular-patterns-mcp
# Then configure Cursor
{
"mcpServers": {
"realworld-angular-patterns": {
"command": "realworld-angular-patterns-mcp"
}
}
}
Once configured, Cursor can:
The MCP server provides:
| Resource | Description |
|---|---|
patterns://angular/rules | Complete enterprise Angular patterns |
patterns://angular/templates | Reusable code templates |
patterns://angular/validation | Validation rules |
| Tool | Description |
|---|---|
validate-angular-code | Validates code against patterns |
generate-angular-template | Generates pattern-compliant templates |
// Cursor will automatically validate this component:
@Component({
selector: "app-user-list",
standalone: true, // ✅ Required pattern
imports: [CommonModule],
template: `
<div class="container-fluid">
<!-- ✅ Bootstrap pattern -->
@if (loading()) {
<!-- ✅ Angular 18+ pattern -->
<div class="spinner-border"></div>
}
</div>
`,
})
export class UserListComponent {
loading = signal(false); // ✅ Signals pattern
}
Ask Cursor: "Generate a user service following realworld patterns"
Result:
@Injectable({ providedIn: "root" })
export class UserService {
private http = inject(HttpClient);
private _state = signal(initialState);
state = this._state.asReadonly();
}
# Development mode
npm run dev
# Build for production
npm run build
# Test the server
npm start
# Publish to NPM
npm run build
npm publish
{
"mcpServers": {
"realworld-patterns": {
"command": "realworld-angular-patterns-mcp"
}
}
}
{
"mcp.servers": [
{
"name": "realworld-patterns",
"command": "realworld-angular-patterns-mcp"
}
]
}
✅ Real-time validation of Angular code
✅ Automatic pattern enforcement
✅ Template generation following enterprise standards
✅ Dependency boundary checking
✅ Bootstrap-only CSS validation
✅ Signals-based state management guidance
Your AI assistant now understands and enforces your enterprise Angular patterns automatically! 🎉
cd mcp-server
npm pack
npm install -g realworld-angular-patterns-mcp-1.0.0.tgz
FAQs
MCP server for Realworld Angular patterns
The npm package realworld-angular-patterns-mcp receives a total of 2 weekly downloads. As such, realworld-angular-patterns-mcp popularity was classified as not popular.
We found that realworld-angular-patterns-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.