Skip to content

Commit a6bb55c

Browse files
authored
docs: remove hosted live demo line from README (#1459)
* docs: remove hosted live demo line from README Drop the "Try ApeRAG Live Demo" promotional line; README still documents self-hosted usage and MCP examples. Made-with: Cursor * docs: align zh README and integration examples with self-hosted URLs - Remove Chinese hosted-demo line from README-zh.md - Use localhost MCP URL in README & MCP API examples; Dify guide points to Quick Start + local web/API instead of a fixed public host Made-with: Cursor
1 parent 4716ffd commit a6bb55c

10 files changed

Lines changed: 16 additions & 21 deletions

File tree

README-zh.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66

77
ApeRAG 是一个生产级 RAG(检索增强生成)平台,结合了图 RAG、向量搜索、全文搜索和先进的 AI 智能体。构建具有混合检索、多模态文档处理、智能代理和企业级管理功能的复杂 AI 应用程序。
88

9-
**🚀 [在线体验 ApeRAG](https://rag.apecloud.com/)** - 通过我们的托管演示体验完整的平台功能
10-
119
ApeRAG 是你构建自己的知识图谱、进行上下文工程以及部署能够自主搜索和推理知识库的智能 AI 代理的最佳选择。
1210

1311
[Read English Documentation](README.md)
@@ -51,7 +49,7 @@ ApeRAG 支持 [MCP(模型上下文协议)](https://modelcontextprotocol.io/)
5149
{
5250
"mcpServers": {
5351
"aperag-mcp": {
54-
"url": "https://rag.apecloud.com/mcp/",
52+
"url": "http://localhost:8000/mcp/",
5553
"headers": {
5654
"Authorization": "Bearer your-api-key-here"
5755
}
@@ -64,7 +62,7 @@ ApeRAG 支持 [MCP(模型上下文协议)](https://modelcontextprotocol.io/)
6462
1. **HTTP Authorization 头**(推荐):`Authorization: Bearer your-api-key`
6563
2. **环境变量**(备用):`APERAG_API_KEY=your-api-key`
6664

67-
**重要提示**`https://rag.apecloud.com` 替换为您实际的 ApeRAG API 地址,`your-api-key-here` 替换为 ApeRAG 设置中的有效 API 密钥。
65+
**重要提示**若为非本机部署,请将示例 URL 换成实际 API 源地址对应的 MCP 路径(如 `https://<你的域名>/mcp/`)。`your-api-key-here` 替换为 ApeRAG 设置中的有效 API 密钥。
6866

6967
MCP 服务器提供:
7068
- **集合浏览**:列出和探索您的知识集合

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
# ApeRAG
22
[![Trust Score](https://archestra.ai/mcp-catalog/api/badge/quality/apecloud/ApeRAG)](https://archestra.ai/mcp-catalog/apecloud__aperag)
33

4-
**🚀 [Try ApeRAG Live Demo](https://rag.apecloud.com/)** - Experience the full platform capabilities with our hosted demo
5-
6-
74
![HarryPotterKG2.png](docs%2Fen-US%2Fimages%2FHarryPotterKG2.png)
85

96
![chat2.png](docs%2Fen-US%2Fimages%2Fchat2.png)
@@ -52,7 +49,7 @@ ApeRAG supports [MCP (Model Context Protocol)](https://modelcontextprotocol.io/)
5249
{
5350
"mcpServers": {
5451
"aperag-mcp": {
55-
"url": "https://rag.apecloud.com/mcp/",
52+
"url": "http://localhost:8000/mcp/",
5653
"headers": {
5754
"Authorization": "Bearer your-api-key-here"
5855
}
@@ -65,7 +62,7 @@ ApeRAG supports [MCP (Model Context Protocol)](https://modelcontextprotocol.io/)
6562
1. **HTTP Authorization Header** (Recommended): `Authorization: Bearer your-api-key`
6663
2. **Environment Variable** (Fallback): `APERAG_API_KEY=your-api-key`
6764

68-
**Important**: Replace `https://rag.apecloud.com` with your actual ApeRAG API URL and `your-api-key-here` with a valid API key from your ApeRAG settings.
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.
6966

7067
The MCP server provides:
7168
- **Collection browsing**: List and explore your knowledge collections

docs/en-US/integration/dify.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ ApeRAG is a production-grade RAG platform with multimodal indexing, AI agents, M
3131

3232
## Step 1: Prepare Knowledge Base
3333

34-
Visit ApeRAG at https://rag.apecloud.com/ , register/login, and select or import a knowledge base. Here we use the Romance of the Three Kingdoms example - click subscribe.
34+
Open your ApeRAG web UI (see [Quick Start](../../../README.md#quick-start); with Docker Compose this is typically http://localhost:3000/web/). Sign in and select or import a knowledge base. This walkthrough uses the Romance of the Three Kingdoms exampleclick **Subscribe**.
3535

3636
<div align="center">
3737
<img src="/images/en-US/dify/step1-subscribe-collection.png" alt="Subscribe to Collection" width="800" />
@@ -49,7 +49,7 @@ Go to Dify - Tools - MCP, click Add MCP Server.
4949

5050
### 2.2 Fill Configuration
5151

52-
Fill in Server URL: `https://rag.apecloud.com/mcp/` and your API Key copied from ApeRAG, then click Confirm.
52+
Fill in Server URL: `http://localhost:8000/mcp/` (use `https://<your-aperag-host>/mcp/` if ApeRAG is not local), paste your API Key from ApeRAG, then click Confirm.
5353

5454
<div align="center">
5555
<img src="/images/en-US/dify/step2-configure-mcp.png" alt="Configure MCP" width="700" />

docs/en-US/integration/mcp-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ For Claude Desktop, add to configuration file:
1717
{
1818
"mcpServers": {
1919
"aperag": {
20-
"url": "https://rag.apecloud.com/mcp/",
20+
"url": "http://localhost:8000/mcp/",
2121
"headers": {
2222
"Authorization": "Bearer your-api-key-here"
2323
}

docs/zh-CN/integration/dify.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ ApeRAG 是一款具备多模态索引、AI 智能体、MCP 支持及可扩展 K8
3131

3232
## Step 1: 准备知识库
3333

34-
访问 ApeRAG 官网 https://rag.apecloud.com/ ,注册登录后选择或导入一个知识库。这里以三国演义知识库为例,点击订阅知识库
34+
打开 ApeRAG Web 界面(见[快速开始](../../../README-zh.md#快速开始);Docker Compose 启动时一般为 http://localhost:3000/web/)。登录后选择或导入知识库。下文以「三国演义」知识库为例,点击订阅
3535

3636
<div align="center">
3737
<img src="/images/zh-CN/dify/step1-subscribe-collection.png" alt="订阅知识库" width="800" />
@@ -49,7 +49,7 @@ ApeRAG 是一款具备多模态索引、AI 智能体、MCP 支持及可扩展 K8
4949

5050
### 2.2 填写配置信息
5151

52-
填写 Server URL:`https://rag.apecloud.com/mcp/`,以及在 ApeRAG 中复制的 API Key,点击确定。
52+
填写 Server URL:`http://localhost:8000/mcp/`(若非本机部署,请改为实际 API 地址,例如 `https://<你的域名>/mcp/`),并粘贴从 ApeRAG 复制的 API Key,点击确定。
5353

5454
<div align="center">
5555
<img src="/images/zh-CN/dify/step2-configure-mcp.png" alt="配置 MCP" width="700" />

docs/zh-CN/integration/mcp-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ApeRAG 通过 [Model Context Protocol (MCP)](https://modelcontextprotocol.io/)
1717
{
1818
"mcpServers": {
1919
"aperag": {
20-
"url": "https://rag.apecloud.com/mcp/",
20+
"url": "http://localhost:8000/mcp/",
2121
"headers": {
2222
"Authorization": "Bearer your-api-key-here"
2323
}

web/docs/en-US/integration/dify.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ ApeRAG is a production-grade RAG platform with multimodal indexing, AI agents, M
3131

3232
## Step 1: Prepare Knowledge Base
3333

34-
Visit ApeRAG at https://rag.apecloud.com/ , register/login, and select or import a knowledge base. Here we use the Romance of the Three Kingdoms example - click subscribe.
34+
Open your ApeRAG web UI (see [Quick Start](../../../../README.md#quick-start); with Docker Compose this is typically http://localhost:3000/web/). Sign in and select or import a knowledge base. This walkthrough uses the Romance of the Three Kingdoms exampleclick **Subscribe**.
3535

3636
<div align="center">
3737
<img src="/images/en-US/dify/step1-subscribe-collection.png" alt="Subscribe to Collection" width="800" />
@@ -49,7 +49,7 @@ Go to Dify - Tools - MCP, click Add MCP Server.
4949

5050
### 2.2 Fill Configuration
5151

52-
Fill in Server URL: `https://rag.apecloud.com/mcp/` and your API Key copied from ApeRAG, then click Confirm.
52+
Fill in Server URL: `http://localhost:8000/mcp/` (use `https://<your-aperag-host>/mcp/` if ApeRAG is not local), paste your API Key from ApeRAG, then click Confirm.
5353

5454
<div align="center">
5555
<img src="/images/en-US/dify/step2-configure-mcp.png" alt="Configure MCP" width="700" />

web/docs/en-US/integration/mcp-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ For Claude Desktop, add to configuration file:
1717
{
1818
"mcpServers": {
1919
"aperag": {
20-
"url": "https://rag.apecloud.com/mcp/",
20+
"url": "http://localhost:8000/mcp/",
2121
"headers": {
2222
"Authorization": "Bearer your-api-key-here"
2323
}

web/docs/zh-CN/integration/dify.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ ApeRAG 是一款具备多模态索引、AI 智能体、MCP 支持及可扩展 K8
3131

3232
## Step 1: 准备知识库
3333

34-
访问 ApeRAG 官网 https://rag.apecloud.com/ ,注册登录后选择或导入一个知识库。这里以三国演义知识库为例,点击订阅知识库
34+
打开 ApeRAG Web 界面(见[快速开始](../../../../README-zh.md#快速开始);Docker Compose 启动时一般为 http://localhost:3000/web/)。登录后选择或导入知识库。下文以「三国演义」知识库为例,点击订阅
3535

3636
<div align="center">
3737
<img src="/images/zh-CN/dify/step1-subscribe-collection.png" alt="订阅知识库" width="800" />
@@ -49,7 +49,7 @@ ApeRAG 是一款具备多模态索引、AI 智能体、MCP 支持及可扩展 K8
4949

5050
### 2.2 填写配置信息
5151

52-
填写 Server URL:`https://rag.apecloud.com/mcp/`,以及在 ApeRAG 中复制的 API Key,点击确定。
52+
填写 Server URL:`http://localhost:8000/mcp/`(若非本机部署,请改为实际 API 地址,例如 `https://<你的域名>/mcp/`),并粘贴从 ApeRAG 复制的 API Key,点击确定。
5353

5454
<div align="center">
5555
<img src="/images/zh-CN/dify/step2-configure-mcp.png" alt="配置 MCP" width="700" />

web/docs/zh-CN/integration/mcp-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ApeRAG 通过 [Model Context Protocol (MCP)](https://modelcontextprotocol.io/)
1717
{
1818
"mcpServers": {
1919
"aperag": {
20-
"url": "https://rag.apecloud.com/mcp/",
20+
"url": "http://localhost:8000/mcp/",
2121
"headers": {
2222
"Authorization": "Bearer your-api-key-here"
2323
}

0 commit comments

Comments
 (0)