v0.1.3 • View on npm
Main CLI tool for generating MCP servers, Claude commands, and AI agents.
Install the CLI globally using npm:
npm install -g @neural-tools/cli
Or use it directly with npx:
npx @neural-tools/cli --help
Once installed, you can use the neural-tools command:
neural-tools [command] [options]
Get help for any command:
neural-tools --help
neural-tools generate --help
Generate a new Python FastMCP server with Docker support.
neural-tools generate mcp <name> [options]
| Option | Description | Default |
|---|---|---|
--description |
Description of the MCP server | - |
--docker |
Include Docker setup | true |
--port |
Server port | 8000 |
Generate a custom slash command for Claude Code.
neural-tools generate command <name> [options]
| Option | Description |
|---|---|
--description |
What the command does |
--tools |
Allowed tools (comma-separated) |
--args |
Command arguments |
Create a specialized AI agent with custom instructions.
neural-tools generate agent <name> [options]
| Option | Description |
|---|---|
--description |
Agent's purpose |
--instructions |
Custom instructions |
--tools |
Allowed tools |
neural-tools generate mcp github-integration \
--description "GitHub API integration with issues and PRs"
neural-tools generate command search-kb \
--description "Search internal knowledge base" \
--tools "grep,read"
neural-tools generate agent code-reviewer \
--description "Automated code review agent" \
--instructions "Review code for bugs, security issues, and best practices"