Skip to main content
ClaudeWave

AI-first, headless and Signal-native Angular UI components with machine-readable contracts.

MCP ServersOfficial Registry8 stars1 forksTypeScriptMITUpdated today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/18/2026
Install in Claude Code / Claude Desktop
Method: NPX · @neural-ng/mcp-server
Claude Code CLI
claude mcp add neuraltech -- npx -y @neural-ng/mcp-server
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "neuraltech": {
      "command": "npx",
      "args": ["-y", "@neural-ng/mcp-server"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

<div align="center">
  <img src="apps/neural-site/public/neuralng-repository-banner.svg?v=3" alt="NeuralNg — Interfaces for the agentic era" width="100%" />

  <br />

[![npm](https://img.shields.io/npm/v/@neural-ng/core?logo=npm&label=%40neural-ng%2Fcore)](https://www.npmjs.com/package/@neural-ng/core)
[![Angular 22+](https://img.shields.io/badge/Angular-22%2B-DD0031?logo=angular)](https://angular.dev/)
[![MIT](https://img.shields.io/badge/license-MIT-2563eb.svg)](./LICENSE)

[Documentation](https://neuralng.dev) · [Installation](https://neuralng.dev/docs/installation) · [Components](https://neuralng.dev/docs/components) · [MCP server](https://neuralng.dev/docs/mcp-server) · [Contributing](./CONTRIBUTING.md)

</div>

NeuralNg is an Angular UI component system designed first for code-generating
agents and fully usable by human developers. It combines standalone,
Signal-native APIs with
strict types, accessible native semantics, SSR-safe behavior, headless styling
and tree-shakable secondary entry points.

> **Beta:** the current Core release is `0.1.0-beta.8`. Public APIs may change
> before the first stable release.

## Why NeuralNg?

- **Agent-readable:** every public component ships focused README and `llms.txt`
  context, while the MCP server exposes component discovery and theme tools.
- **Angular-native:** standalone components, Signals, strict TypeScript, Angular
  Forms integration and deterministic hydration.
- **Accessible by contract:** native semantics, keyboard interaction, focus
  behavior and accessible names are part of component acceptance.
- **Style without lock-in:** use Neutral defaults, typed class slots, component
  tokens or complete `unstyled` control.
- **Package what you use:** import from dedicated secondary entry points for
  predictable, tree-shakable builds.

## Quick start

Install the component library and the framework-independent icon set:

```bash
npm install @neural-ng/core @neural-ng/icons
```

Load the icons and a bundled theme in your application styles:

```css
@import '@neural-ng/icons/icons.css';
@import '@neural-ng/core/themes/neutral.css';
```

Import only the component entry points you need:

```ts
import { Component } from '@angular/core';
import { NeuralButton } from '@neural-ng/core/button';
import { NeuralInput } from '@neural-ng/core/input';

@Component({
  selector: 'app-agent-form',
  imports: [NeuralButton, NeuralInput],
  template: `
    <label for="agent-task">Task</label>
    <input neuralInput id="agent-task" placeholder="Describe the task" />
    <neural-button label="Run agent" icon="nt nt-sparkles" />
  `,
})
export class AgentForm {}
```

See the [installation guide](https://neuralng.dev/docs/installation)
for application configuration, theming and SSR setup.

## Packages

| Package                                                                        | Purpose                                                             | Current release |
| ------------------------------------------------------------------------------ | ------------------------------------------------------------------- | --------------- |
| [`@neural-ng/core`](https://www.npmjs.com/package/@neural-ng/core)             | 51 accessible Angular components, services, localization and tokens | `0.1.0-beta.8`  |
| [`@neural-ng/editor`](https://www.npmjs.com/package/@neural-ng/editor)         | Structured, AI-native and collaboration-ready editor                | `0.1.0-beta.0`  |
| [`@neural-ng/icons`](https://www.npmjs.com/package/@neural-ng/icons)           | 6,184 framework-independent `nt nt-*` CSS mask icons                | `0.1.0-beta.0`  |
| [`@neural-ng/theme`](https://www.npmjs.com/package/@neural-ng/theme)           | Typed theme recipe compiler and Tailwind v4 bridge                  | `0.1.0-beta.5`  |
| [`@neural-ng/mcp-server`](https://www.npmjs.com/package/@neural-ng/mcp-server) | Angular UI expert agent interface for composition and validation    | `1.0.0-rc.1`    |

## AI-agent workflow

NeuralNg keeps machine-readable context close to its public APIs. Agents can
read the hosted [`llms.txt`](https://neuralng.dev/llms.txt), consume the package
documentation beside each component, or connect the MCP server:

```bash
npx @neural-ng/mcp-server
```

The server supports bounded discovery and theme recipe operations without
granting write access to your application. See the
[MCP guide](https://neuralng.dev/docs/mcp-server) for client setup and
available resources.

Agent Skills-compatible clients can also install or upload the portable
[`neuralng-angular` skill](./skills/neuralng-angular/SKILL.md). It teaches an
agent to resolve versioned component contracts before generating Angular UI.

## Theming

Neutral is the recommended stable source contract. `@neural-ng/theme` expands a
compact `neural.theme.json` recipe into Core and Editor CSS, a Tailwind v4
bridge, token interchange JSON and diagnostics:

```bash
npm install --save-dev @neural-ng/theme
npx neural-theme init
npx neural-theme build
```

Glass, Futuristic and Mist remain experimental presets while the theme system
is in beta. Use Neutral or `unstyled` for production-sensitive customization.

## Repository map

```text
apps/neural-site          Production documentation and landing application
apps/neural-site-e2e      Production-site Playwright coverage
apps/neural-demo          Component contract and regression laboratory
apps/neural-demo-e2e      Exhaustive interaction coverage
libs/neural-ng            @neural-ng/core source and component documentation
libs/neural-editor        @neural-ng/editor source
libs/neural-icons         @neural-ng/icons generator and assets
libs/neural-mcp           @neural-ng/mcp-server resources, tools and CLI
libs/neural-theme         Theme schema, token contract, compiler and CLI
templates/neural-starter  Angular + Tailwind consumer template
tools/neural-docs         Documentation contract and coverage verification
```

`neural-demo` is intentionally retained as a non-production regression
laboratory while its broader scenarios are migrated to `neural-site`. Public
documentation belongs in `neural-site`.

## Development

Use Node 24 and npm 11:

```bash
npm ci
npm run dev
```

Before opening a pull request, run the relevant quality gates:

```bash
npm run format:check
npm run lint
npm test
npm run build
npm run package:test
npm run docs:verify
npm run e2e:chromium
```

The package smoke test packs generated npm artifacts and compiles a minimal
external consumer. The MCP smoke test validates the published server over
stdio, and documentation verification checks package-to-route contracts,
installable examples and navigation coverage.

## Contributing

Issues, focused pull requests and documentation improvements are welcome. Read
[CONTRIBUTING.md](./CONTRIBUTING.md) before starting. Report vulnerabilities
privately through the process in [SECURITY.md](./SECURITY.md).

## Support the project

If NeuralNg saves you time, you can support its development by starring the
repository, sharing it, contributing fixes, or sponsoring ongoing work through
the **Sponsor** button at the top of the repository.

## License

NeuralNg is released under the [MIT License](./LICENSE).
accessibilityai-agentsangularangular-componentsdesign-systemheadless-uimcpsignalstypescriptui-library

What people ask about NeuralTech

What is hasanaydin7/NeuralTech?

+

hasanaydin7/NeuralTech is mcp servers for the Claude AI ecosystem. AI-first, headless and Signal-native Angular UI components with machine-readable contracts. It has 8 GitHub stars and its last recorded update is dated 2026-09-17.

How do I install NeuralTech?

+

You can install NeuralTech by cloning the repository (https://github.com/hasanaydin7/NeuralTech) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is hasanaydin7/NeuralTech safe to use?

+

Our security agent has analyzed hasanaydin7/NeuralTech and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.

Who maintains hasanaydin7/NeuralTech?

+

hasanaydin7/NeuralTech is maintained by hasanaydin7. The last recorded GitHub activity is dated 2026-09-17, with 15 open issues.

Are there alternatives to NeuralTech?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy NeuralTech to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: hasanaydin7/NeuralTech
[![Featured on ClaudeWave](https://claudewave.com/api/badge/hasanaydin7-neuraltech)](https://claudewave.com/repo/hasanaydin7-neuraltech)
<a href="https://claudewave.com/repo/hasanaydin7-neuraltech"><img src="https://claudewave.com/api/badge/hasanaydin7-neuraltech" alt="Featured on ClaudeWave: hasanaydin7/NeuralTech" width="320" height="64" /></a>

More MCP Servers

NeuralTech alternatives