Build AI Tools in Seconds

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

Everything you need to build AI tools

🚀

MCP Server Generator

Create Python FastMCP servers with Docker support in seconds. Includes example tools, resources, and prompts.

Claude Commands

Generate custom slash commands for Claude Code. Specify allowed tools and arguments.

🤖

Claude Agents

Create specialized AI agents with custom instructions and tool permissions.

🐳

Docker Ready

Complete Docker setup included. Dockerfile, docker-compose, and .dockerignore configured.

🔄

CI/CD Integration

GitHub Actions workflows with AWS and GCP deployment templates built-in.

🧠

Vector Database

Semantic search with Pinecone, Qdrant, ChromaDB, or local storage.

Available Packages

@neural-tools/cli

v0.1.6 • Docs

Main CLI tool for generating MCPs, commands, and agents.

npm install -g @neural-tools/cli

@neural-tools/create

v0.1.6 • Docs

Scaffold a new Neural Tools workspace with best practices.

npx @neural-tools/create

@neural-tools/core

v0.1.6 • Docs

Core utilities, logger, and license management.

npm install @neural-tools/core

@neural-tools/vector-db

v0.1.6 • Docs

Vector database abstraction for Pinecone, Qdrant, and more.

npm install @neural-tools/vector-db

@neural-tools/semantic-cache

v0.1.6 • Docs

LLM response caching with similarity matching.

npm install @neural-tools/semantic-cache

@neural-tools/fine-tune

v0.1.6 • Docs

Fine-tuning workflows and utilities.

npm install @neural-tools/fine-tune

Get Started in 60 Seconds

1

Install the CLI

npm install -g @neural-tools/cli
2

Generate an MCP Server

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

Run with Docker

cd my-server
docker-compose up

Documentation & Resources