feat: add mcp-servers/**

This commit is contained in:
Sun-ZhenXing
2025-10-23 09:21:44 +08:00
parent f603ed5db9
commit 5c3fc0f844
94 changed files with 2211 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
# MCP Memory Server Configuration
# ==============================
# MCP Service
MCP_MEMORY_VERSION=latest
MCP_MEMORY_PORT_OVERRIDE=8000
# Timezone
TZ=UTC

View File

@@ -0,0 +1,25 @@
# Memory MCP Server
Memory MCP Server provides advanced knowledge graph-based persistent memory system through the Model Context Protocol.
## Features
- 🧠 **Knowledge Graph** - Build and manage knowledge graphs
- 📊 **Entity Management** - Create and manage entities
- 🔗 **Relationships** - Create and track relationships
- 💾 **Persistent Memory** - Advanced memory storage
- 🔍 **Graph Queries** - Query the knowledge graph
## Environment Variables
| Variable | Default | Description |
| -------------------------- | -------- | ------------------------ |
| `MCP_MEMORY_VERSION` | `latest` | MCP Memory image version |
| `MCP_MEMORY_PORT_OVERRIDE` | `8000` | MCP service port |
| `TZ` | `UTC` | Timezone |
## Quick Start
```bash
docker compose up -d
```

View File

@@ -0,0 +1,25 @@
# Memory MCP 服务器
Memory MCP 服务器通过 Model Context Protocol 提供高级基于知识图谱的持久化内存系统。
## 功能特性
- 🧠 **知识图谱** - 构建和管理知识图谱
- 📊 **实体管理** - 创建和管理实体
- 🔗 **关系管理** - 创建和跟踪关系
- 💾 **持久化内存** - 高级内存存储
- 🔍 **图查询** - 查询知识图谱
## 环境变量
| 变量 | 默认值 | 说明 |
| -------------------------- | -------- | ------------------- |
| `MCP_MEMORY_VERSION` | `latest` | MCP Memory 镜像版本 |
| `MCP_MEMORY_PORT_OVERRIDE` | `8000` | MCP 服务端口 |
| `TZ` | `UTC` | 时区 |
## 快速开始
```bash
docker compose up -d
```

View File

@@ -0,0 +1,37 @@
x-default: &default
restart: unless-stopped
logging:
driver: json-file
options:
max-size: 100m
max-file: "3"
services:
mcp-memory:
<<: *default
image: mcp/memory:${MCP_MEMORY_VERSION:-latest}
environment:
- MCP_HOST=0.0.0.0
- TZ=${TZ:-UTC}
ports:
- "${MCP_MEMORY_PORT_OVERRIDE:-8000}:8000"
volumes:
- memory_data:/data
healthcheck:
test: ["CMD", "wget", "--spider", "-q", "http://localhost:8000/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
deploy:
resources:
limits:
cpus: '1.00'
memory: 512M
reservations:
cpus: '0.25'
memory: 128M
volumes:
memory_data:
driver: local