CLI for Neural Tools - Generate MCPs, Claude commands, and AI workflows
npm install @neural-tools/cli> CLI for Neural Tools - Generate MCPs, Claude commands, and AI workflows


The main CLI tool for Neural Tools, providing commands to generate MCP servers, Claude commands, agents, and deploy AI-powered applications.
``bash`
npm install -g @neural-tools/cli
`bash`
npm install --save-dev @neural-tools/cli
`bash`
npx @neural-tools/cli
`bash`
neural-tools
Generate a FastMCP server with Python templates.
`bash
neural-tools generate mcp
Options:
-d, --description
-o, --output
--cicd
--deployment
--dry-run Preview without creating files
`
Example:
`bash`
neural-tools generate mcp github-integration \
--description "GitHub API integration server" \
--cicd github \
--deployment aws
This creates:
- Complete FastMCP server with Python
- Docker configuration
- CI/CD workflow files
- Deployment templates (if specified)
---
Generate a Claude Code slash command.
`bash
neural-tools generate command
Options:
-d, --description
-o, --output
--args
--tools
--global Install globally to ~/.claude/commands
--dry-run Preview without creating files
`
Example:
`bash`
neural-tools generate command search-docs \
--description "Search project documentation" \
--args query \
--tools "Read" "Grep" "Bash"
This creates a slash command that can be used in Claude Code as /search-docs .
---
Generate a specialized Claude agent.
`bash
neural-tools generate agent
Options:
-d, --description
-o, --output
--model
--tools
--global Install globally to ~/.claude/agents
--dry-run Preview without creating files
`
Example:
`bash`
neural-tools generate agent code-reviewer \
--description "Automated code review agent" \
--model opus \
--tools "Read" "Grep" "Edit"
---
Deploy an MCP server to AWS or GCP.
`bash
neural-tools deploy
Options:
-p, --platform
--region
--env
`
Example:
`bash`
neural-tools deploy github-integration \
--platform aws \
--region us-east-1 \
--env production
---
Manage your Neural Tools license (optional).
`bash
neural-tools login [options]
Options:
--key
`
Note: All features are free and available without a license.
---
View current status and available features.
`bash`
neural-tools status
Shows:
- License information (if configured)
- Available features (all features are enabled)
- Quick start commands
When you use the CLI, it creates organized project structures:
``
my-project/
├── apps/ # Generated MCP servers
│ └── mcp-github/
│ ├── server.py
│ ├── Dockerfile
│ └── requirements.txt
├── claude/
│ ├── commands/ # Slash commands
│ │ └── search-docs.md
│ └── agents/ # Specialized agents
│ └── code-reviewer.md
└── package.json
The CLI reads configuration from:
- package.json (workspace settings).env
- (environment variables)~/.ai-toolkit/
- (user settings)
`bashClone the repository
git clone https://github.com/MacLeanLuke/neural-tools.git
cd neural-tools/packages/cli
Examples
$3
`bash
neural-tools generate mcp github \
--description "GitHub API integration" \
--cicd github \
--deployment aws
`$3
`bash
neural-tools generate command search-kb \
--description "Search vector database" \
--args query \
--tools "Read" "Bash"
`$3
`bash
neural-tools deploy github \
--platform aws \
--region us-east-1 \
--env prod
``- @neural-tools/core - Core utilities and types
- commander - CLI framework
- inquirer - Interactive prompts
- execa - Process execution
- fs-extra - Enhanced file system operations
Contributions are welcome! See the main repository for guidelines.
MIT - See LICENSE.md for details.
- Documentation
- GitHub
- npm
- Issues