@neural-tools/cli

v0.1.3 • View on npm

Main CLI tool for generating MCP servers, Claude commands, and AI agents.

On this page

Installation

Install the CLI globally using npm:

npm install -g @neural-tools/cli

Or use it directly with npx:

npx @neural-tools/cli --help

Usage

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

Commands

generate mcp

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 command

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

generate agent

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

Examples

Generate a GitHub MCP Server

neural-tools generate mcp github-integration \
  --description "GitHub API integration with issues and PRs"

Create a Knowledge Base Search Command

neural-tools generate command search-kb \
  --description "Search internal knowledge base" \
  --tools "grep,read"

Build a Code Review Agent

neural-tools generate agent code-reviewer \
  --description "Automated code review agent" \
  --instructions "Review code for bugs, security issues, and best practices"

Related Packages