Generate production-ready MCP servers, Claude commands, and AI workflows with one CLI command.
# Create a new workspace
npx @neural-tools/create@latest my-workspace
# Generate a Python MCP server with Docker
neural-tools generate mcp github --description "GitHub integration"
# Generate a Claude command
neural-tools generate command search-kb
Create Python FastMCP servers with Docker support in seconds. Includes example tools, resources, and prompts.
Generate custom slash commands for Claude Code. Specify allowed tools and arguments.
Create specialized AI agents with custom instructions and tool permissions.
Complete Docker setup included. Dockerfile, docker-compose, and .dockerignore configured.
GitHub Actions workflows with AWS and GCP deployment templates built-in.
Semantic search with Pinecone, Qdrant, ChromaDB, or local storage.
v0.1.6 • Docs
Main CLI tool for generating MCPs, commands, and agents.
npm install -g @neural-tools/cli
v0.1.6 • Docs
Scaffold a new Neural Tools workspace with best practices.
npx @neural-tools/create
v0.1.6 • Docs
Core utilities, logger, and license management.
npm install @neural-tools/core
v0.1.6 • Docs
Vector database abstraction for Pinecone, Qdrant, and more.
npm install @neural-tools/vector-db
v0.1.6 • Docs
LLM response caching with similarity matching.
npm install @neural-tools/semantic-cache
v0.1.6 • Docs
Fine-tuning workflows and utilities.
npm install @neural-tools/fine-tune
npm install -g @neural-tools/cli
neural-tools generate mcp my-server \
--description "My first MCP"
cd my-server
docker-compose up