Manifold is a powerful platform designed for workflow automation using AI models. It supports text generation, image generation, and retrieval-augmented generation, integrating seamlessly with popular AI endpoints including OpenAI, llama.cpp, Apple's MLX LM, Google Gemini, Anthropic Claude, ComfyUI, and MFlux. Additionally, Manifold provides robust semantic search capabilities using PGVector combined with the SEFII (Semantic Embedding Forest with Inverted Index) engine.
Note: Manifold is under active development. The platform is not intended for production use until otherwise noted.
Run parallel inference across multiple providers.
Manifold implements an MCP client and a ReAct Agent for full "autopilot" task execution. MCP servers can be configured as Docker containers that mount the same local:container paths for secure tool execution.
Or use the MCP node to list and execute tools as part of your workflows.
Manifold supports image generation via ComfyUI in Windows, Linux and MacOS. Manifold also supports MLXFlux image generation on MacOS only, no external service required.
For now, Manifold supports OpenAI and supported local vision models via llama.cpp
such as Gemma-3.
Manifold features a powerful semantic and keyword document ingestion and retrieval engine. Ingest files, entire folders, and even LLM output. Retrieve relevant information for your AI assistant to use as reference.
Manifold provides nodes to control the execution order of your workflows.
Run concurrent agents. Jump to nodes. Execute for each loops on assistant outputs. Combine context. Publish and subscribe to topics to teleport context around your workflows. Be creative!
Ensure the following software is installed before proceeding:
- Chrome Browser: Required for web tools. Used as a headless browser and managed by Manifold. WebGPU support should be enabled for text-to-speech to work.
- Python: Version 3.10 or newer (Download).
- Docker: Recommended for easy setup of PGVector (Download).
For development, you'll also need:
- Go: Version 1.21 or newer (Download).
- Node.js: Version 20 managed via
nvm
(Installation Guide).
The easiest way to get started with Manifold is to download a pre-built binary from the releases page.
-
Download the appropriate binary for your platform:
- macOS:
manifold-darwin-universal.zip
(Universal binary for both Intel and Apple Silicon) - Linux:
manifold-linux-amd64.zip
ormanifold-linux-arm64.zip
- macOS:
-
Extract the zip file and navigate to the extracted directory.
-
Create a
config.yaml
file in the same directory as the binary (a templateconfig.yaml.example
is included). -
Run the binary:
# On macOS/Linux $ chmod +x manifold-* $ ./manifold-*
$ git clone https://github.com/intelligencedev/manifold.git
$ cd manifold
After cloning the repository, initialize and update the git submodules:
$ git submodule update --init --recursive
This will fetch the required dependencies:
- llama.cpp for local model inference
- pgvector for vector similarity search in PostgreSQL
Manifold will automatically manage the lifecycle of the PGVector container using Docker. Ensure Docker is installed and running on your system.
- Follow the official ComfyUI installation guide.
- No extra configuration needed; Manifold connects via proxy.
- Follow the MFlux installation guide.
Use the provided config.yaml.example
template to create a new config.yaml
file. This file must be placed in the same path as the main.go file if running in development mode, or in the same path as the manifold binary if you build the project.
Ensure to update the values to match your environment.
For development it is not necessary to build the application. See development notes at the bottom of this guide.
Execute the following commands:
$ cd frontend
$ nvm use 20
$ npm install
$ npm run build
$ cd ..
$ go build -ldflags="-s -w" -trimpath -o ./dist/manifold .
# 1. Copy config.yaml to the dist directory (optional)
$ cp config.yaml ./dist/
# 2. Run the binary (multiple options available)
$ ./dist/manifold # Run from project root
# $ cd dist && ./manifold # Run from dist directory
# $ ./dist/manifold -config=config.yaml # Specify config path explicitly
For development, you can run directly without building:
$ cd frontend
$ nvm use 20
$ npm install
$ npm run build
$ cd ..
# Run from project root where config.yaml is located
$ go run . -config=config.yaml
This sequence will:
- Switch Node.js to version 20.
- Build frontend assets.
- Compile the Go backend, generating the executable.
- Copy the configuration file to the dist directory (for production deployment).
- Launch Manifold with the configuration file.
Upon first execution, Manifold creates necessary directories and files (e.g., data
).
Note that Manifold builds the frontend and embeds it in its binary. When building the application, the frontend is not a separate web server.
- On first boot, the application will take longer as it downloads the required models for completions, embeddings, and reranker services.
- The application defaults to a single node instance configuration, managing the lifecycle of services using the llama-server backend and bootstrapping PGVector.
- Services can be configured to run on remote hosts to alleviate load on a single host, but users must manage the lifecycle of remote services manually.
Create or update your configuration based on the provided config.yaml.example
in the repository. Manifold uses a flexible configuration system that supports both YAML files and environment variables.
Important: The config.yaml
file location depends on how you run Manifold:
- Recommended: Keep
config.yaml
in the project root and run./dist/manifold
from there - Alternative: Copy
config.yaml
to the dist directory and run from there (cd dist && ./manifold
) - Flexible: Use the
-config
flag to specify any path:./dist/manifold -config=/path/to/config.yaml
Note: Manifold embeds all necessary files for MCP server Docker image building, so it will work correctly regardless of which directory you run it from.
Crucial Points:
- Update database credentials (
myuser
,changeme
) according to your PGVector setup. - When
single_node_instance
is enabled, Manifold auto-manages the lifecycle of llama-server instances. - When using external API services (OpenAI, Claude, etc.), provide the corresponding API keys.
Important: All file operations (upload, save, open/read) performed via Manifold's API or UI are strictly limited to the configured data directory (as set in config.yaml
). Any attempt to access or write files outside this directory—including path traversal attempts (e.g., using ../
in file paths)—will be rejected with an error. This is enforced for security and data integrity.
- Uploads and saves: Files are always stored within the data directory or its subdirectories. The server will create necessary folders if they do not exist.
- Reads/opens: Only files within the data directory can be accessed. Attempts to read files outside this directory will fail.
- Path traversal protection: The backend sanitizes and validates all file paths to prevent directory escape or unauthorized access.
If you need to change the data directory, update the DataPath
setting in your config.yaml
.
Manifold is compatible with OpenAI-compatible endpoints:
Manifold provides a Docker image for the Model Context Protocol (MCP) server component, allowing you to run the MCP server in containerized environments.
Automatic Building: Manifold automatically builds the MCP Docker image when needed during startup. All required files (Dockerfile, source code, dependencies) are embedded in the Manifold binary, so no manual building is required.
If you want to manually build the Docker image:
# Navigate to the manifold root directory
$ cd manifold
# Build the Docker image with the intelligencedev/manifold-mcp:latest tag
$ docker build -t intelligencedev/manifold-mcp:latest -f mcpserver.Dockerfile .
Once built, you can configure the MCP server in your config.yaml
:
mcpServers:
manifold:
command: docker
args:
- run
- --rm
- -e
- DATA_PATH=/app/projects
- -i
- --volume
- /Users/$USER/.manifold/tmp:/app/projects
- --volume
- /Users/$USER/.ssh:/home/manifold/.ssh:ro
- -e
- GIT_SSH_COMMAND="ssh -o StrictHostKeyChecking=no -i /home/manifold/.ssh/id_rsa"
- intelligencedev/manifold-mcp
agent_name: manifold_tools
instructions: |
You are the tool agent for the "manifold" MCP server.
Answer questions and execute tools available on this server only.
When one or more mcpServers
are configured, Manifold queries each server at startup and creates a dedicated tool agent for it. Each entry may specify an agent_name
and custom instructions
that become the system prompt for that agent. These tool agents expose only the tools from their server and can be consulted via ask_assistant_worker
. When tool agents exist, individual MCP tools are hidden from the main agent's prompt.
- Port Conflict: If port 8080 is occupied, either terminate conflicting processes or choose a new port in
config.yaml
. - PGVector Connectivity: Confirm your
database.connection_string
matches PGVector container credentials. - Missing Config File: Ensure
config.yaml
exists in the correct directory. Manifold will not launch without it. - Docker Issues: Ensure Docker is installed and running. Manifold embeds all necessary files for building Docker images automatically.
Manifold welcomes contributions! Check the open issues for tasks and feel free to submit pull requests.