.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

…/apecloud/aperag
home/mcp-servers/apecloud/aperag
apecloud avatar

aperag

byapecloud· 1 MCP server

Stars

1.3k

Forks

146

Category

AI Agents & MCP

View on GitHub

TL;DR

ApeRAG is a production-ready RAG (Retrieval-Augmented Generation) platform that combines Graph RAG, vector search, and full-text search with advanced AI agents. Build sophisticated AI applications with hybrid retrieval, multimodal document processing, intelligent agents, and ente

How to install aperag?

apecloud/aperag
$git clone https://github.com/apecloud/aperag

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

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

Files · 1

View on GitHub
README.md
1# ApeRAG
2[![Trust Score](https://archestra.ai/mcp-catalog/api/badge/quality/apecloud/ApeRAG)](https://archestra.ai/mcp-catalog/apecloud__aperag)
3 
4![HarryPotterKG2.png](docs%2Fen-US%2Fimages%2FHarryPotterKG2.png)
5 
6![chat2.png](docs%2Fen-US%2Fimages%2Fchat2.png)
7 
8 
9ApeRAG is a production-ready RAG (Retrieval-Augmented Generation) platform that combines Graph RAG, vector search, and full-text search with advanced AI agents. Build sophisticated AI applications with hybrid retrieval, multimodal document processing, intelligent agents, and enterprise-grade management features.
10 
11ApeRAG is the best choice for building your own Knowledge Graph, Context Engineering, and deploying intelligent AI agents that can autonomously search and reason across your knowledge base.
12 
13[阅读中文文档](README-zh.md)
14 
15- [Quick Start](#quick-start)
16- [Key Features](#key-features)
17- [Kubernetes Deployment (Recommended for Production)](#kubernetes-deployment-recommended-for-production)
18- [Development](./docs/en-US/development-guide.md)
19- [Build Docker Image](./docs/en-US/build-docker-image.md)
20- [Acknowledgments](#acknowledgments)
21- [License](#license)
22 
23## Quick Start
24 
25> Before installing ApeRAG, make sure your machine meets the following minimum system requirements:
26>
27> - CPU >= 2 Core
28> - RAM >= 4 GiB
29> - Docker & Docker Compose
30 
31The easiest way to start ApeRAG is through Docker Compose. Before running the following commands, make sure that [Docker](https://docs.docker.com/get-docker/) and [Docker Compose](https://docs.docker.com/compose/install/) are installed on your machine:
32 
33```bash
34git clone https://github.com/apecloud/ApeRAG.git
35cd ApeRAG
36cp envs/env.template .env
37docker-compose up -d --pull always
38```
39 
40After running, you can access ApeRAG in your browser at:
41- **Web Interface**: http://localhost:3000/web/
42- **API Documentation**: http://localhost:8000/docs
43 
44#### MCP (Model Context Protocol) Support
45 
46ApeRAG supports [MCP (Model Context Protocol)](https://modelcontextprotocol.io/) integration, allowing AI assistants to interact with your knowledge base directly. After starting the services, configure your MCP client with:
47 
48```json
49{
50 "mcpServers": {
51 "aperag-mcp": {
52 "url": "http://localhost:8000/mcp/",
53 "headers": {
54 "Authorization": "Bearer your-api-key-here"
55 }
56 }
57 }
58}
59```
60 
61**Authentication** (by priority):
621. **HTTP Authorization Header** (Recommended): `Authorization: Bearer your-api-key`
632. **Environment Variable** (Fallback): `APERAG_API_KEY=your-api-key`
64 
65**Important**: Use your deployed API origin if not local (e.g. `https://your-host/mcp/`). Replace `your-api-key-here` with a valid API key from your ApeRAG settings.
66 
67The MCP server provides:
68- **Collection browsing**: List and explore your knowledge collections
69- **Hybrid search**: Search using vector, full-text, and graph methods
70- **Intelligent querying**: Ask natural language questions about your documents
71 
72#### Enhanced Document Parsing
73 
74For enhanced document parsing capabilities, ApeRAG supports an **advanced document parsing service** powered by MinerU, which provides superior parsing for complex documents, tables, and formulas.
75 
76<details>
77<summary><strong>Enhanced Document Parsing Commands</strong></summary>
78 
79```bash
80# Enable advanced document parsing service
81DOCRAY_HOST=http://aperag-docray:8639 docker compose --profile docray up -d
82 
83# Enable advanced parsing with GPU acceleration
84DOCRAY_HOST=http://aperag-docray-gpu:8639 docker compose --profile docray-gpu up -d
85```
86 
87Or use the Makefile shortcuts (requires [GNU Make](https://www.gnu.org/software/make/)):
88```bash
89# Enable advanced document parsing service
90make compose-up WITH_DOCRAY=1
91 
92# Enable advanced parsing with GPU acceleration (recommended)
93make compose-up WITH_DOCRAY=1 WITH_GPU=1
94```
95 
96</details>
97 
98#### Development & Contributing
99 
100For developers interested in source code development, advanced configurations, or contributing to ApeRAG, please refer to our [Development Guide](./docs/en-US/development-guide.

Preview

apecloud/aperagapecloud/aperag

# ApeRAG

[![Trust Score](https://archestra.ai/mcp-catalog/api/badge/quality/apecloud/ApeRAG)](https://archestra.ai/mcp-catalog/apecloud__aperag)

![HarryPotterKG2.png](docs%2Fen-US%2Fimages%2FHarryPotterKG2.png)

![chat2.png](docs%2Fen-US%2Fimages%2Fchat2.png)

Repoapecloud/aperag
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedMay 2026
LicenseApache-2.0
First seenJul 26, 2026

Tags

MCPagentscontext-engineering

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