.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/dmayboroda/minima
home/mcp-servers/dmayboroda/minima
dmayboroda avatar

minima

bydmayboroda· 1 MCP server

Stars

1.0k

Forks

105

Category

AI Agents & MCP

View on GitHub

TL;DR

Minima is an open source RAG on-premises containers, with ability to integrate with ChatGPT and MCP. Minima can also be used as a fully local RAG or with your own deployed LLM.

How to install minima?

dmayboroda/minima
$git clone https://github.com/dmayboroda/minima

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install minima by running `git clone https://github.com/dmayboroda/minima`, then use it for the current task and follow its documentation at https://github.com/dmayboroda/minima.

Files · 1

View on GitHub
README.md
1<p align="center">
2 <a href="https://mnma.ai/" target="blank"><img src="assets/logo-full.svg" width="300" alt="MNMA Logo" /></a>
3</p>
4 
5**Minima** is an open source RAG on-premises containers, with ability to integrate with ChatGPT and MCP.
6Minima can also be used as a fully local RAG or with your own deployed LLM.
7 
8Minima currently supports four modes:
91. **Isolated installation (Ollama)** – Operate fully on-premises with containers, free from external dependencies such as ChatGPT or Claude. All neural networks (LLM, reranker, embedding) run on your cloud or PC, ensuring your data remains secure.
10 
112. **Custom LLM (OpenAI-compatible API)** – Use your own deployed LLM with OpenAI-compatible API (vLLM, Ollama server, TGI, etc.). The indexer runs locally while the LLM can be on your server, cloud, or local machine. No Ollama deployment needed, lighter resource usage, and full control over your LLM infrastructure.
12 
133. **Custom GPT** – Query your local documents using ChatGPT app or web with custom GPTs. The indexer runs on your cloud or local PC, while the primary LLM remains ChatGPT.
14 
154. **Anthropic Claude** – Use Anthropic Claude app to query your local documents. The indexer operates on your local PC, while Anthropic Claude serves as the primary LLM.
16 
17---
18 
19## Running as Containers
20 
21### Quick Start with run.sh
22 
23The easiest way to start Minima is using the `run.sh` script:
24 
25```bash
26./run.sh
27```
28 
29You'll see the following options:
30```
31Select an option:
321) Fully Local Setup (Ollama)
332) Custom LLM (OpenAI-compatible API)
343) ChatGPT Integration
354) MCP usage
365) Quit
37```
38 
39### Manual Docker Compose Commands
40 
411. Create a .env file in the project's root directory (where you'll find .env.sample). Place .env in the same folder and copy all environment variables from .env.sample to .env.
42 
432. Ensure your .env file includes the following variables:
44<ul>
45 <li> LOCAL_FILES_PATH </li>
46 <li> EMBEDDING_MODEL_ID </li>
47 <li> EMBEDDING_SIZE </li>
48 <li> OLLAMA_MODEL (only for Ollama mode) </li>
49 <li> RERANKER_MODEL (only for Ollama mode) </li>
50 <li> LLM_BASE_URL (only for Custom LLM mode) </li>
51 <li> LLM_MODEL (only for Custom LLM mode) </li>
52 <li> LLM_API_KEY (optional for Custom LLM mode) </li>
53 <li> USER_ID </li> - required for ChatGPT integration, just use your email
54 <li> PASSWORD </li> - required for ChatGPT integration, just use any password
55</ul>
56 
573. For fully local installation use: **docker compose -f docker-compose-ollama.yml --env-file .env up --build**.
58 
594. For custom LLM deployment (OpenAI-compatible API) use: **docker compose -f docker-compose-custom-llm.yml --env-file .env up --build**.
60 
615. For ChatGPT enabled installation use: **docker compose -f docker-compose-chatgpt.yml --env-file .env up --build**.
62 
636. For MCP integration (Anthropic Desktop app usage): **docker compose -f docker-compose-mcp.yml --env-file .env up --build**.
64 
656. In case of ChatGPT enabled installation copy OTP from terminal where you launched docker and use [Minima GPT](https://chatgpt.com/g/g-r1MNTSb0Q-minima-local-computer-search)
66 
677. If you use Anthropic Claude, just add folliwing to **/Library/Application\ Support/Claude/claude_desktop_config.json**
68 
69```
70{
71 "mcpServers": {
72 "minima": {
73 "command": "uv",
74 "args": [
75 "--directory",
76 "/path_to_cloned_minima_project/mcp-server",
77 "run",
78 "minima"
79 ]
80 }
81 }
82 }
83```
84
858. To use fully local installation go to `cd electron`, then run `npm install` and `npm start` which will launch Minima electron app.
86 
879. Ask anything, and you'll get answers based on local files in {LOCAL_FILES_PATH} folder.
88---
89 
90## Variables Explained
91 
92**LOCAL_FILES_PATH**: Specify the root folder for indexing (on your cloud or local pc). Indexing is a recursive process, meaning all documents within subfolders of this root folder will also be indexed. Supported file types: .pdf, .xls, .docx, .txt, .md, .csv.
93 
94**EMBEDDING_MODEL_ID**: Specify the embedding mode

Preview

dmayboroda/minimadmayboroda/minima
Repodmayboroda/minima
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedJan 2026
LicenseMPL-2.0
First seenJul 27, 2026

Tags

MCPaiclaude

Related

6 picks
Type
  1. langchain-ai avatarlangchain-mcp-adaptersMake Anthropic Model Context Protocol (MCP) tools compatible with LangChain and LangGraph agents.MCP ServersJul 20267.0M3.6k
  2. openclaw avatarmcporterTypeScript runtime and CLI for connecting to configured Model Context Protocol servers.MCP ServersJul 20262.5M4.8k
  3. sparfenyuk avatarmcp-proxyA MCP server which proxies requests to a remote MCP server over streamable HTTP or SSE.MCP ServersJul 20262.2M2.7k
  4. sooperset avatarmcp-atlassianThe Model Context Protocol (MCP) Atlassian integration is an open-source implementation that bridges Atlassian products (Jira and Confluence) with AI language models following Anthropic's MCP specification.MCP ServersJul 20261.7M5.6k
  5. open-webui avataropen-webuiOpen WebUIMCP ServersJul 20261.4M147k
  6. dyoshikawa avatarrulesyncUnified AI rules management CLI tool that generates configuration files for various AI development toolsMCP ServersJul 2026889k1.3k