@neural-tools/create

v0.1.3 • View on npm

Scaffold a new Neural Tools workspace with best practices and templates.

On this page

Usage

Create a new workspace using npx (no installation required):

npx @neural-tools/create@latest my-workspace

Or install globally and use:

npm install -g @neural-tools/create
create-neural-tools my-workspace

The CLI will guide you through:

Workspace Structure

A typical Neural Tools workspace includes:

my-workspace/
├── .claude/              # Claude Code configuration
│   ├── commands/         # Custom slash commands
│   └── agents/           # AI agents
├── mcp-servers/          # MCP servers
│   └── example/
│       ├── Dockerfile
│       ├── docker-compose.yml
│       └── server.py
├── .github/
│   └── workflows/        # CI/CD pipelines
├── package.json
└── README.md

Templates

Default Template

Includes:

Minimal Template

Bare-bones setup for custom configurations:

Next Steps

After creating your workspace:

1. Install the CLI

npm install -g @neural-tools/cli

2. Generate your first MCP server

cd my-workspace
neural-tools generate mcp my-server \
  --description "My first MCP server"

3. Run with Docker

cd mcp-servers/my-server
docker-compose up

Related Packages