feat: add mcp-servers/**
This commit is contained in:
17
mcp-servers/dockerhub/.env.example
Normal file
17
mcp-servers/dockerhub/.env.example
Normal file
@@ -0,0 +1,17 @@
|
||||
# Docker image version
|
||||
DOCKERHUB_MCP_VERSION=latest
|
||||
|
||||
# Host port override
|
||||
DOCKERHUB_MCP_PORT_OVERRIDE=8000
|
||||
|
||||
# Docker Hub username (optional, for authentication)
|
||||
DOCKERHUB_USERNAME=
|
||||
|
||||
# Docker Hub password (optional, for authentication)
|
||||
DOCKERHUB_PASSWORD=
|
||||
|
||||
# Docker Hub access token (recommended for authentication)
|
||||
DOCKERHUB_TOKEN=
|
||||
|
||||
# Timezone
|
||||
TZ=UTC
|
||||
185
mcp-servers/dockerhub/README.md
Normal file
185
mcp-servers/dockerhub/README.md
Normal file
@@ -0,0 +1,185 @@
|
||||
# Docker Hub MCP Server
|
||||
|
||||
Docker Hub MCP Server provides integration with Docker Hub through the Model Context Protocol, enabling image search, query, and management capabilities.
|
||||
|
||||
## Features
|
||||
|
||||
- 🔍 **Image Search** - Search for images on Docker Hub
|
||||
- 📊 **Image Info** - Get detailed image information
|
||||
- 🏷️ **Tag Management** - View image tags
|
||||
- 📈 **Statistics** - View download counts and stars
|
||||
- 👤 **User Management** - Manage Docker Hub account
|
||||
- 📝 **Repository Info** - Repository information queries
|
||||
|
||||
## Environment Variables
|
||||
|
||||
| Variable | Default | Description |
|
||||
| ----------------------------- | -------- | ---------------------------------------------- |
|
||||
| `DOCKERHUB_MCP_VERSION` | `latest` | Docker image version |
|
||||
| `DOCKERHUB_MCP_PORT_OVERRIDE` | `8000` | Service port |
|
||||
| `DOCKERHUB_USERNAME` | - | Docker Hub username (optional, for auth) |
|
||||
| `DOCKERHUB_PASSWORD` | - | Docker Hub password (optional, for auth) |
|
||||
| `DOCKERHUB_TOKEN` | - | Docker Hub access token (recommended for auth) |
|
||||
| `TZ` | `UTC` | Timezone |
|
||||
|
||||
## Authentication Methods
|
||||
|
||||
The service supports three authentication methods:
|
||||
|
||||
### 1. No Authentication (Public Access)
|
||||
|
||||
Only public images and information can be accessed.
|
||||
|
||||
### 2. Username & Password Authentication
|
||||
|
||||
```env
|
||||
DOCKERHUB_USERNAME=your_username
|
||||
DOCKERHUB_PASSWORD=your_password
|
||||
```
|
||||
|
||||
### 3. Access Token Authentication (Recommended)
|
||||
|
||||
```env
|
||||
DOCKERHUB_TOKEN=your_access_token
|
||||
```
|
||||
|
||||
## Quick Start
|
||||
|
||||
### 1. Configure Environment
|
||||
|
||||
Create a `.env` file:
|
||||
|
||||
#### No Authentication Mode (Public Access Only)
|
||||
|
||||
```env
|
||||
DOCKERHUB_MCP_VERSION=latest
|
||||
DOCKERHUB_MCP_PORT_OVERRIDE=8000
|
||||
TZ=Asia/Shanghai
|
||||
```
|
||||
|
||||
#### Token Authentication Mode (Recommended)
|
||||
|
||||
```env
|
||||
DOCKERHUB_MCP_VERSION=latest
|
||||
DOCKERHUB_MCP_PORT_OVERRIDE=8000
|
||||
DOCKERHUB_TOKEN=dckr_pat_your_token_here
|
||||
TZ=Asia/Shanghai
|
||||
```
|
||||
|
||||
### 2. Get Docker Hub Access Token
|
||||
|
||||
1. Login to [Docker Hub](https://hub.docker.com/)
|
||||
2. Click avatar → **Account Settings**
|
||||
3. Navigate to **Security** → **Access Tokens**
|
||||
4. Click **New Access Token**
|
||||
5. Set permissions (read-only recommended)
|
||||
6. Generate and copy the token
|
||||
|
||||
### 3. Start Service
|
||||
|
||||
```bash
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
### 4. Verify Service
|
||||
|
||||
```bash
|
||||
curl http://localhost:8000/health
|
||||
```
|
||||
|
||||
## Resource Requirements
|
||||
|
||||
- Minimum memory: 128MB
|
||||
- Recommended memory: 512MB
|
||||
- CPU: 0.25-1.0 cores
|
||||
|
||||
## Common Use Cases
|
||||
|
||||
1. **Image Search** - Search for Docker images suitable for projects
|
||||
2. **Version Query** - View all available tags for an image
|
||||
3. **Dependency Analysis** - Analyze base images and dependencies
|
||||
4. **Security Check** - View image security scan reports
|
||||
5. **Download Statistics** - Check image popularity
|
||||
|
||||
## API Features
|
||||
|
||||
The MCP server provides the following main features:
|
||||
|
||||
- ✅ Search public and private images
|
||||
- ✅ Get image tag lists
|
||||
- ✅ View detailed image information
|
||||
- ✅ Query repository statistics
|
||||
- ✅ Check for image updates
|
||||
- ✅ View Dockerfiles
|
||||
|
||||
## Permission Types
|
||||
|
||||
### Read-Only Token Permissions
|
||||
|
||||
Recommended for most query operations:
|
||||
|
||||
- ✅ Search images
|
||||
- ✅ View image information
|
||||
- ✅ Get tag lists
|
||||
- ❌ Push images
|
||||
- ❌ Delete images
|
||||
|
||||
### Read-Write Token Permissions
|
||||
|
||||
For management operations:
|
||||
|
||||
- ✅ All read-only operations
|
||||
- ✅ Push images
|
||||
- ✅ Delete images
|
||||
- ✅ Update repository settings
|
||||
|
||||
## Security Recommendations
|
||||
|
||||
⚠️ **Important**:
|
||||
|
||||
1. **Prefer Access Tokens**: More secure than passwords
|
||||
2. **Least Privilege**: Only grant necessary permissions
|
||||
3. **Regular Rotation**: Update access tokens regularly
|
||||
4. **Protect Environment Variables**: Don't commit `.env` to version control
|
||||
5. **Monitor Access**: Regularly check token usage
|
||||
6. **Use Read-Only Tokens**: Unless write access is needed
|
||||
|
||||
## Rate Limits
|
||||
|
||||
Docker Hub has API rate limits:
|
||||
|
||||
- **Unauthenticated**: 100 requests/6 hours
|
||||
- **Free Account**: 200 requests/6 hours
|
||||
- **Paid Account**: Higher rate limits
|
||||
|
||||
Authentication is recommended for higher rate limits.
|
||||
|
||||
## References
|
||||
|
||||
- [Docker Hub Official Site](https://hub.docker.com/)
|
||||
- [Docker Hub API Documentation](https://docs.docker.com/docker-hub/api/latest/)
|
||||
- [MCP Documentation](https://modelcontextprotocol.io/)
|
||||
|
||||
## License
|
||||
|
||||
MIT License
|
||||
|
||||
通过 AI 可以进行以下查询:
|
||||
|
||||
1. "搜索 nginx 相关的镜像"
|
||||
2. "查看 python:3.11 镜像的所有标签"
|
||||
3. "获取 redis:alpine 镜像的详细信息"
|
||||
4. "查找最流行的 PostgreSQL 镜像"
|
||||
5. "比较不同 Node.js 镜像的大小"
|
||||
|
||||
## 参考链接
|
||||
|
||||
- [Docker Hub](https://hub.docker.com/)
|
||||
- [Docker Hub API 文档](https://docs.docker.com/docker-hub/api/latest/)
|
||||
- [Docker Hub 访问令牌](https://docs.docker.com/docker-hub/access-tokens/)
|
||||
- [MCP 官方文档](https://modelcontextprotocol.io/)
|
||||
- [Docker Hub - mcp/dockerhub](https://hub.docker.com/r/mcp/dockerhub)
|
||||
|
||||
## 许可证
|
||||
|
||||
MIT License
|
||||
165
mcp-servers/dockerhub/README.zh.md
Normal file
165
mcp-servers/dockerhub/README.zh.md
Normal file
@@ -0,0 +1,165 @@
|
||||
# Docker Hub MCP Server
|
||||
|
||||
Docker Hub MCP Server 提供通过模型上下文协议(MCP)与 Docker Hub 集成的能力,实现镜像搜索、查询和管理功能。
|
||||
|
||||
## 功能特性
|
||||
|
||||
- 🔍 **镜像搜索** - 在 Docker Hub 上搜索镜像
|
||||
- 📊 **镜像信息** - 获取详细的镜像信息
|
||||
- 🏷️ **标签管理** - 查看镜像标签
|
||||
- 📈 **统计信息** - 查看下载量和星标数
|
||||
- 👤 **用户管理** - 管理 Docker Hub 账户
|
||||
- 📝 **仓库信息** - 仓库信息查询
|
||||
|
||||
## 环境变量
|
||||
|
||||
| 变量 | 默认值 | 说明 |
|
||||
| ----------------------------- | -------- | ----------------------------------- |
|
||||
| `DOCKERHUB_MCP_VERSION` | `latest` | Docker 镜像版本 |
|
||||
| `DOCKERHUB_MCP_PORT_OVERRIDE` | `8000` | 服务端口 |
|
||||
| `DOCKERHUB_USERNAME` | - | Docker Hub 用户名(可选,用于认证) |
|
||||
| `DOCKERHUB_PASSWORD` | - | Docker Hub 密码(可选,用于认证) |
|
||||
| `DOCKERHUB_TOKEN` | - | Docker Hub 访问令牌(推荐用于认证) |
|
||||
| `TZ` | `UTC` | 时区 |
|
||||
|
||||
## 认证方式
|
||||
|
||||
该服务支持三种认证方式:
|
||||
|
||||
### 1. 无认证(公开访问)
|
||||
|
||||
仅能访问公开镜像和信息。
|
||||
|
||||
### 2. 用户名和密码认证
|
||||
|
||||
```env
|
||||
DOCKERHUB_USERNAME=your_username
|
||||
DOCKERHUB_PASSWORD=your_password
|
||||
```
|
||||
|
||||
### 3. 访问令牌认证(推荐)
|
||||
|
||||
```env
|
||||
DOCKERHUB_TOKEN=your_access_token
|
||||
```
|
||||
|
||||
## 快速开始
|
||||
|
||||
### 1. 配置环境
|
||||
|
||||
创建 `.env` 文件:
|
||||
|
||||
#### 无认证模式(仅公开访问)
|
||||
|
||||
```env
|
||||
DOCKERHUB_MCP_VERSION=latest
|
||||
DOCKERHUB_MCP_PORT_OVERRIDE=8000
|
||||
TZ=Asia/Shanghai
|
||||
```
|
||||
|
||||
#### 令牌认证模式(推荐)
|
||||
|
||||
```env
|
||||
DOCKERHUB_MCP_VERSION=latest
|
||||
DOCKERHUB_MCP_PORT_OVERRIDE=8000
|
||||
DOCKERHUB_TOKEN=dckr_pat_your_token_here
|
||||
TZ=Asia/Shanghai
|
||||
```
|
||||
|
||||
### 2. 获取 Docker Hub 访问令牌
|
||||
|
||||
1. 登录 [Docker Hub](https://hub.docker.com/)
|
||||
2. 点击头像 → **Account Settings**
|
||||
3. 导航到 **Security** → **Access Tokens**
|
||||
4. 点击 **New Access Token**
|
||||
5. 设置权限(推荐只读权限)
|
||||
6. 生成并复制令牌
|
||||
|
||||
### 3. 启动服务
|
||||
|
||||
```bash
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
### 4. 验证服务
|
||||
|
||||
```bash
|
||||
curl http://localhost:8000/health
|
||||
```
|
||||
|
||||
## 资源需求
|
||||
|
||||
- 最小内存:128MB
|
||||
- 推荐内存:512MB
|
||||
- CPU:0.25-1.0 核心
|
||||
|
||||
## 常见使用场景
|
||||
|
||||
1. **镜像搜索** - 搜索适合项目的 Docker 镜像
|
||||
2. **版本查询** - 查看镜像的所有可用标签
|
||||
3. **依赖分析** - 分析镜像的基础镜像和依赖
|
||||
4. **安全检查** - 查看镜像的安全扫描报告
|
||||
5. **下载统计** - 查看镜像的受欢迎程度
|
||||
|
||||
## API 功能
|
||||
|
||||
该 MCP 服务器提供以下主要功能:
|
||||
|
||||
- ✅ 搜索公开和私有镜像
|
||||
- ✅ 获取镜像标签列表
|
||||
- ✅ 查看镜像详细信息
|
||||
- ✅ 查询仓库统计信息
|
||||
- ✅ 检查镜像更新
|
||||
- ✅ 查看 Dockerfiles
|
||||
|
||||
## 权限类型
|
||||
|
||||
### 只读令牌权限
|
||||
|
||||
推荐用于大多数查询操作:
|
||||
|
||||
- ✅ 搜索镜像
|
||||
- ✅ 查看镜像信息
|
||||
- ✅ 获取标签列表
|
||||
- ❌ 推送镜像
|
||||
- ❌ 删除镜像
|
||||
|
||||
### 读写令牌权限
|
||||
|
||||
用于管理操作:
|
||||
|
||||
- ✅ 所有只读操作
|
||||
- ✅ 推送镜像
|
||||
- ✅ 删除镜像
|
||||
- ✅ 更新仓库设置
|
||||
|
||||
## 安全建议
|
||||
|
||||
⚠️ **重要**:
|
||||
|
||||
1. **优先使用访问令牌**:比密码更安全
|
||||
2. **最小权限原则**:只授予必要的权限
|
||||
3. **定期轮换**:定期更新访问令牌
|
||||
4. **保护环境变量**:不要将 `.env` 提交到版本控制
|
||||
5. **监控访问**:定期检查令牌使用情况
|
||||
6. **使用只读令牌**:除非需要写权限
|
||||
|
||||
## 速率限制
|
||||
|
||||
Docker Hub 有 API 速率限制:
|
||||
|
||||
- **未认证**:100 次请求 / 6 小时
|
||||
- **免费账户**:200 次请求 / 6 小时
|
||||
- **付费账户**:更高的速率限制
|
||||
|
||||
建议使用认证以获得更高的速率限制。
|
||||
|
||||
## 参考链接
|
||||
|
||||
- [Docker Hub 官方网站](https://hub.docker.com/)
|
||||
- [Docker Hub API 文档](https://docs.docker.com/docker-hub/api/latest/)
|
||||
- [MCP 文档](https://modelcontextprotocol.io/)
|
||||
|
||||
## 许可证
|
||||
|
||||
MIT License
|
||||
34
mcp-servers/dockerhub/docker-compose.yaml
Normal file
34
mcp-servers/dockerhub/docker-compose.yaml
Normal file
@@ -0,0 +1,34 @@
|
||||
x-default: &default
|
||||
restart: unless-stopped
|
||||
logging:
|
||||
driver: json-file
|
||||
options:
|
||||
max-size: 100m
|
||||
max-file: "3"
|
||||
|
||||
services:
|
||||
dockerhub:
|
||||
<<: *default
|
||||
image: mcp/dockerhub:${DOCKERHUB_MCP_VERSION:-latest}
|
||||
environment:
|
||||
- DOCKERHUB_USERNAME=${DOCKERHUB_USERNAME}
|
||||
- DOCKERHUB_PASSWORD=${DOCKERHUB_PASSWORD}
|
||||
- DOCKERHUB_TOKEN=${DOCKERHUB_TOKEN}
|
||||
- MCP_HOST=0.0.0.0
|
||||
- TZ=${TZ:-UTC}
|
||||
ports:
|
||||
- "${DOCKERHUB_MCP_PORT_OVERRIDE:-8000}:8000"
|
||||
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
|
||||
32
mcp-servers/grafana/.env.example
Normal file
32
mcp-servers/grafana/.env.example
Normal file
@@ -0,0 +1,32 @@
|
||||
# MCP Grafana service version
|
||||
MCP_GRAFANA_VERSION=latest
|
||||
|
||||
# Grafana version
|
||||
GRAFANA_VERSION=latest
|
||||
|
||||
# MCP Grafana service port
|
||||
MCP_GRAFANA_PORT_OVERRIDE=8000
|
||||
|
||||
# Grafana port
|
||||
GRAFANA_PORT_OVERRIDE=3000
|
||||
|
||||
# Grafana URL
|
||||
GRAFANA_URL=http://grafana:3000
|
||||
|
||||
# Grafana API key (required)
|
||||
GRAFANA_API_KEY=
|
||||
|
||||
# Grafana admin username
|
||||
GRAFANA_ADMIN_USER=admin
|
||||
|
||||
# Grafana admin password
|
||||
GRAFANA_ADMIN_PASSWORD=admin
|
||||
|
||||
# Grafana plugins to install (comma-separated)
|
||||
GRAFANA_INSTALL_PLUGINS=
|
||||
|
||||
# Grafana root URL
|
||||
GRAFANA_ROOT_URL=http://localhost:3000
|
||||
|
||||
# Timezone
|
||||
TZ=UTC
|
||||
118
mcp-servers/grafana/README.md
Normal file
118
mcp-servers/grafana/README.md
Normal file
@@ -0,0 +1,118 @@
|
||||
# Grafana MCP Server
|
||||
|
||||
Grafana MCP Server provides integration with Grafana monitoring and visualization platform through the Model Context Protocol.
|
||||
|
||||
## Features
|
||||
|
||||
- 📊 **Dashboard Management** - Create and manage dashboards
|
||||
- 📈 **Query Datasources** - Query data sources
|
||||
- 🔍 **Search Dashboards** - Search dashboards
|
||||
- 🚨 **Incident Investigation** - Investigate incidents
|
||||
- 📉 **Metrics Analysis** - Analyze metrics
|
||||
- 🎨 **Visualization** - Data visualization
|
||||
|
||||
## Architecture
|
||||
|
||||
The service consists of two containers:
|
||||
|
||||
- **mcp-grafana**: MCP server providing AI interaction interface with Grafana
|
||||
- **grafana**: Grafana instance
|
||||
|
||||
## Environment Variables
|
||||
|
||||
| Variable | Default | Description |
|
||||
| --------------------------- | ----------------------- | ---------------------------------------- |
|
||||
| `MCP_GRAFANA_VERSION` | `latest` | MCP Grafana image version |
|
||||
| `GRAFANA_VERSION` | `latest` | Grafana version |
|
||||
| `MCP_GRAFANA_PORT_OVERRIDE` | `8000` | MCP service port |
|
||||
| `GRAFANA_PORT_OVERRIDE` | `3000` | Grafana port |
|
||||
| `GRAFANA_URL` | `http://grafana:3000` | Grafana instance URL |
|
||||
| `GRAFANA_API_KEY` | - | Grafana API key (required) |
|
||||
| `GRAFANA_ADMIN_USER` | `admin` | Admin username |
|
||||
| `GRAFANA_ADMIN_PASSWORD` | `admin` | Admin password (⚠️ change in production!) |
|
||||
| `GRAFANA_INSTALL_PLUGINS` | - | Plugins to install (comma-separated) |
|
||||
| `GRAFANA_ROOT_URL` | `http://localhost:3000` | Grafana root URL |
|
||||
| `TZ` | `UTC` | Timezone |
|
||||
|
||||
## Quick Start
|
||||
|
||||
### 1. Configure Environment
|
||||
|
||||
Create a `.env` file:
|
||||
|
||||
```env
|
||||
MCP_GRAFANA_VERSION=latest
|
||||
GRAFANA_VERSION=latest
|
||||
MCP_GRAFANA_PORT_OVERRIDE=8000
|
||||
GRAFANA_PORT_OVERRIDE=3000
|
||||
GRAFANA_ADMIN_USER=admin
|
||||
GRAFANA_ADMIN_PASSWORD=your_secure_password
|
||||
GRAFANA_ROOT_URL=http://localhost:3000
|
||||
TZ=Asia/Shanghai
|
||||
```
|
||||
|
||||
### 2. Start Services
|
||||
|
||||
```bash
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
### 3. Get API Key
|
||||
|
||||
1. Visit Grafana: <http://localhost:3000>
|
||||
2. Login with admin credentials
|
||||
3. Navigate to **Configuration** → **API Keys**
|
||||
4. Create a new API key
|
||||
5. Add the key to `.env` file: `GRAFANA_API_KEY=your_key_here`
|
||||
6. Restart mcp-grafana service: `docker compose restart mcp-grafana`
|
||||
|
||||
### 4. Verify Services
|
||||
|
||||
```bash
|
||||
# Verify MCP service
|
||||
curl http://localhost:8000/health
|
||||
|
||||
# Verify Grafana service
|
||||
curl http://localhost:3000/api/health
|
||||
```
|
||||
|
||||
## Resource Requirements
|
||||
|
||||
- **MCP Service**: 128MB-512MB memory, 0.25-1.0 CPU
|
||||
- **Grafana**: 256MB-1GB memory, 0.5-2.0 CPU
|
||||
|
||||
## Common Use Cases
|
||||
|
||||
1. **Dashboard Search** - Find dashboards using natural language
|
||||
2. **Data Queries** - Query metric data from data sources
|
||||
3. **Alert Management** - View and manage alert rules
|
||||
4. **Visualization Creation** - Create new visualization panels
|
||||
5. **Incident Analysis** - Investigate and analyze monitoring events
|
||||
|
||||
## Security Recommendations
|
||||
|
||||
⚠️ **Important**: In production environments:
|
||||
|
||||
1. Change default admin password
|
||||
2. Use strong passwords and secure API keys
|
||||
3. Enable HTTPS/TLS encryption
|
||||
4. Restrict network access
|
||||
5. Rotate API keys regularly
|
||||
6. Set appropriate user permissions
|
||||
|
||||
## Data Persistence
|
||||
|
||||
- `grafana_data`: Grafana data directory
|
||||
- `grafana_config`: Grafana configuration directory
|
||||
- `grafana_logs`: Grafana logs directory
|
||||
|
||||
## References
|
||||
|
||||
- [Grafana Official Site](https://grafana.com/)
|
||||
- [Grafana API Documentation](https://grafana.com/docs/grafana/latest/developers/http_api/)
|
||||
- [MCP Documentation](https://modelcontextprotocol.io/)
|
||||
- [Docker Hub - grafana/grafana](https://hub.docker.com/r/grafana/grafana)
|
||||
|
||||
## License
|
||||
|
||||
MIT License
|
||||
118
mcp-servers/grafana/README.zh.md
Normal file
118
mcp-servers/grafana/README.zh.md
Normal file
@@ -0,0 +1,118 @@
|
||||
# Grafana MCP Server
|
||||
|
||||
Grafana MCP Server 提供通过模型上下文协议(MCP)与 Grafana 监控和可视化平台集成的能力。
|
||||
|
||||
## 功能特性
|
||||
|
||||
- 📊 **仪表板管理** - 创建和管理仪表板
|
||||
- 📈 **查询数据源** - 查询数据源
|
||||
- 🔍 **搜索仪表板** - 搜索仪表板
|
||||
- 🚨 **事件调查** - 调查事件
|
||||
- 📉 **指标分析** - 分析指标
|
||||
- 🎨 **可视化** - 数据可视化
|
||||
|
||||
## 架构
|
||||
|
||||
该服务包含两个容器:
|
||||
|
||||
- **mcp-grafana**:MCP 服务器,提供与 Grafana 的 AI 交互接口
|
||||
- **grafana**:Grafana 实例
|
||||
|
||||
## 环境变量
|
||||
|
||||
| 变量 | 默认值 | 说明 |
|
||||
| --------------------------- | ----------------------- | -------------------------------- |
|
||||
| `MCP_GRAFANA_VERSION` | `latest` | MCP Grafana 镜像版本 |
|
||||
| `GRAFANA_VERSION` | `latest` | Grafana 版本 |
|
||||
| `MCP_GRAFANA_PORT_OVERRIDE` | `8000` | MCP 服务端口 |
|
||||
| `GRAFANA_PORT_OVERRIDE` | `3000` | Grafana 端口 |
|
||||
| `GRAFANA_URL` | `http://grafana:3000` | Grafana 实例 URL |
|
||||
| `GRAFANA_API_KEY` | - | Grafana API 密钥(必需) |
|
||||
| `GRAFANA_ADMIN_USER` | `admin` | 管理员用户名 |
|
||||
| `GRAFANA_ADMIN_PASSWORD` | `admin` | 管理员密码(⚠️ 生产环境请修改!) |
|
||||
| `GRAFANA_INSTALL_PLUGINS` | - | 要安装的插件(逗号分隔) |
|
||||
| `GRAFANA_ROOT_URL` | `http://localhost:3000` | Grafana 根 URL |
|
||||
| `TZ` | `UTC` | 时区 |
|
||||
|
||||
## 快速开始
|
||||
|
||||
### 1. 配置环境
|
||||
|
||||
创建 `.env` 文件:
|
||||
|
||||
```env
|
||||
MCP_GRAFANA_VERSION=latest
|
||||
GRAFANA_VERSION=latest
|
||||
MCP_GRAFANA_PORT_OVERRIDE=8000
|
||||
GRAFANA_PORT_OVERRIDE=3000
|
||||
GRAFANA_ADMIN_USER=admin
|
||||
GRAFANA_ADMIN_PASSWORD=your_secure_password
|
||||
GRAFANA_ROOT_URL=http://localhost:3000
|
||||
TZ=Asia/Shanghai
|
||||
```
|
||||
|
||||
### 2. 启动服务
|
||||
|
||||
```bash
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
### 3. 获取 API 密钥
|
||||
|
||||
1. 访问 Grafana:<http://localhost:3000>
|
||||
2. 使用管理员凭据登录
|
||||
3. 导航到 **Configuration** → **API Keys**
|
||||
4. 创建新的 API 密钥
|
||||
5. 将密钥添加到 `.env` 文件:`GRAFANA_API_KEY=your_key_here`
|
||||
6. 重启 mcp-grafana 服务:`docker compose restart mcp-grafana`
|
||||
|
||||
### 4. 验证服务
|
||||
|
||||
```bash
|
||||
# 验证 MCP 服务
|
||||
curl http://localhost:8000/health
|
||||
|
||||
# 验证 Grafana 服务
|
||||
curl http://localhost:3000/api/health
|
||||
```
|
||||
|
||||
## 资源需求
|
||||
|
||||
- **MCP 服务**:128MB-512MB 内存,0.25-1.0 CPU
|
||||
- **Grafana**:256MB-1GB 内存,0.5-2.0 CPU
|
||||
|
||||
## 常见使用场景
|
||||
|
||||
1. **仪表板搜索** - 使用自然语言查找仪表板
|
||||
2. **数据查询** - 从数据源查询指标数据
|
||||
3. **告警管理** - 查看和管理告警规则
|
||||
4. **可视化创建** - 创建新的可视化面板
|
||||
5. **事件分析** - 调查和分析监控事件
|
||||
|
||||
## 安全建议
|
||||
|
||||
⚠️ **重要**:在生产环境中:
|
||||
|
||||
1. 修改默认管理员密码
|
||||
2. 使用强密码和安全的 API 密钥
|
||||
3. 启用 HTTPS/TLS 加密
|
||||
4. 限制网络访问
|
||||
5. 定期轮换 API 密钥
|
||||
6. 设置适当的用户权限
|
||||
|
||||
## 数据持久化
|
||||
|
||||
- `grafana_data`:Grafana 数据目录
|
||||
- `grafana_config`:Grafana 配置目录
|
||||
- `grafana_logs`:Grafana 日志目录
|
||||
|
||||
## 参考链接
|
||||
|
||||
- [Grafana 官方网站](https://grafana.com/)
|
||||
- [Grafana API 文档](https://grafana.com/docs/grafana/latest/developers/http_api/)
|
||||
- [MCP 文档](https://modelcontextprotocol.io/)
|
||||
- [Docker Hub - grafana/grafana](https://hub.docker.com/r/grafana/grafana)
|
||||
|
||||
## 许可证
|
||||
|
||||
MIT License
|
||||
74
mcp-servers/grafana/docker-compose.yaml
Normal file
74
mcp-servers/grafana/docker-compose.yaml
Normal file
@@ -0,0 +1,74 @@
|
||||
x-default: &default
|
||||
restart: unless-stopped
|
||||
logging:
|
||||
driver: json-file
|
||||
options:
|
||||
max-size: 100m
|
||||
max-file: "3"
|
||||
|
||||
services:
|
||||
mcp-grafana:
|
||||
<<: *default
|
||||
image: mcp/grafana:${MCP_GRAFANA_VERSION:-latest}
|
||||
environment:
|
||||
- GRAFANA_URL=${GRAFANA_URL:-http://grafana:3000}
|
||||
- GRAFANA_API_KEY=${GRAFANA_API_KEY}
|
||||
- MCP_HOST=0.0.0.0
|
||||
- TZ=${TZ:-UTC}
|
||||
ports:
|
||||
- "${MCP_GRAFANA_PORT_OVERRIDE:-8000}:8000"
|
||||
depends_on:
|
||||
grafana:
|
||||
condition: service_healthy
|
||||
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
|
||||
|
||||
grafana:
|
||||
<<: *default
|
||||
image: grafana/grafana:${GRAFANA_VERSION:-latest}
|
||||
environment:
|
||||
- GF_SECURITY_ADMIN_USER=${GRAFANA_ADMIN_USER:-admin}
|
||||
- GF_SECURITY_ADMIN_PASSWORD=${GRAFANA_ADMIN_PASSWORD:-admin}
|
||||
- GF_INSTALL_PLUGINS=${GRAFANA_INSTALL_PLUGINS:-}
|
||||
- GF_SERVER_ROOT_URL=${GRAFANA_ROOT_URL:-http://localhost:3000}
|
||||
- TZ=${TZ:-UTC}
|
||||
ports:
|
||||
- "${GRAFANA_PORT_OVERRIDE:-3000}:3000"
|
||||
volumes:
|
||||
- grafana_data:/var/lib/grafana
|
||||
- grafana_config:/etc/grafana
|
||||
- grafana_logs:/var/log/grafana
|
||||
healthcheck:
|
||||
test: ["CMD", "wget", "--spider", "-q", "http://localhost:3000/api/health"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
start_period: 30s
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
cpus: '2.00'
|
||||
memory: 1G
|
||||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 256M
|
||||
|
||||
volumes:
|
||||
grafana_data:
|
||||
driver: local
|
||||
grafana_config:
|
||||
driver: local
|
||||
grafana_logs:
|
||||
driver: local
|
||||
26
mcp-servers/mongodb/.env.example
Normal file
26
mcp-servers/mongodb/.env.example
Normal file
@@ -0,0 +1,26 @@
|
||||
# MCP MongoDB Service version
|
||||
MCP_MONGODB_VERSION=latest
|
||||
|
||||
# MongoDB version
|
||||
MONGODB_VERSION=7
|
||||
|
||||
# MCP MongoDB service port
|
||||
MCP_MONGODB_PORT_OVERRIDE=8000
|
||||
|
||||
# MongoDB port
|
||||
MONGODB_PORT_OVERRIDE=27017
|
||||
|
||||
# MongoDB connection URI
|
||||
MONGODB_URI=mongodb://mongodb:27017
|
||||
|
||||
# MongoDB database name
|
||||
MONGODB_DATABASE=mcp_db
|
||||
|
||||
# MongoDB root username
|
||||
MONGO_ROOT_USERNAME=admin
|
||||
|
||||
# MongoDB root password
|
||||
MONGO_ROOT_PASSWORD=password
|
||||
|
||||
# Timezone
|
||||
TZ=UTC
|
||||
104
mcp-servers/mongodb/README.md
Normal file
104
mcp-servers/mongodb/README.md
Normal file
@@ -0,0 +1,104 @@
|
||||
# MongoDB MCP Server
|
||||
|
||||
MongoDB MCP Server provides MongoDB database interaction capabilities through the Model Context Protocol, including data querying, insertion, updating, and collection management.
|
||||
|
||||
## Features
|
||||
|
||||
- 📊 **Database Operations** - CRUD operations support
|
||||
- 🔍 **Query & Aggregation** - Complex queries and aggregation pipelines
|
||||
- 📝 **Collection Management** - Create, delete, and modify collections
|
||||
- 🔐 **Authentication** - Built-in authentication support
|
||||
- <20> **Monitoring** - Health checks and resource monitoring
|
||||
- 🌐 **RESTful API** - MCP protocol-based API interface
|
||||
|
||||
## Architecture
|
||||
|
||||
The service includes two containers:
|
||||
|
||||
- **mcp-mongodb**: MCP protocol adapter providing API interface
|
||||
- **mongodb**: MongoDB database instance
|
||||
|
||||
## Environment Variables
|
||||
|
||||
| Variable | Default | Description |
|
||||
| --------------------------- | ------------------------- | --------------------------------------- |
|
||||
| `MCP_MONGODB_VERSION` | `latest` | MCP MongoDB service version |
|
||||
| `MONGODB_VERSION` | `7` | MongoDB version |
|
||||
| `MCP_MONGODB_PORT_OVERRIDE` | `8000` | MCP service port |
|
||||
| `MONGODB_PORT_OVERRIDE` | `27017` | MongoDB port |
|
||||
| `MONGODB_URI` | `mongodb://mongodb:27017` | MongoDB connection URI |
|
||||
| `MONGODB_DATABASE` | `mcp_db` | Database name |
|
||||
| `MONGO_ROOT_USERNAME` | `admin` | Root username |
|
||||
| `MONGO_ROOT_PASSWORD` | `password` | Root password (⚠️ change in production!) |
|
||||
| `TZ` | `UTC` | Timezone |
|
||||
|
||||
## Quick Start
|
||||
|
||||
### 1. Configure Environment
|
||||
|
||||
Create a `.env` file:
|
||||
|
||||
```env
|
||||
MCP_MONGODB_VERSION=latest
|
||||
MONGODB_VERSION=7
|
||||
MCP_MONGODB_PORT_OVERRIDE=8000
|
||||
MONGODB_PORT_OVERRIDE=27017
|
||||
MONGODB_DATABASE=mcp_db
|
||||
MONGO_ROOT_USERNAME=admin
|
||||
MONGO_ROOT_PASSWORD=your_secure_password
|
||||
TZ=Asia/Shanghai
|
||||
```
|
||||
|
||||
### 2. Start Services
|
||||
|
||||
```bash
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
### 3. Verify Services
|
||||
|
||||
Check MCP service:
|
||||
|
||||
```bash
|
||||
curl http://localhost:8000/health
|
||||
```
|
||||
|
||||
Connect to MongoDB:
|
||||
|
||||
```bash
|
||||
docker compose exec mongodb mongosh -u admin -p your_secure_password
|
||||
```
|
||||
|
||||
## Resource Requirements
|
||||
|
||||
- **MCP Service**: 128MB-512MB memory, 0.25-1.0 CPU
|
||||
- **MongoDB**: 512MB-2GB memory, 0.5-2.0 CPU
|
||||
|
||||
## Security Recommendations
|
||||
|
||||
1. **Change Default Password**: Always change `MONGO_ROOT_PASSWORD` in production
|
||||
2. **Network Isolation**: Use internal networks, avoid exposing MongoDB port publicly
|
||||
3. **Enable Authentication**: Ensure MongoDB authentication is enabled
|
||||
4. **Regular Backups**: Set up regular data backup schedules
|
||||
|
||||
## Data Persistence
|
||||
|
||||
- `mongodb_data`: MongoDB data directory
|
||||
- `mongodb_config`: MongoDB configuration directory
|
||||
|
||||
## Common Use Cases
|
||||
|
||||
1. **Application Backend** - As database backend for applications
|
||||
2. **Data Analysis** - Store and query analysis data
|
||||
3. **Document Storage** - Store and retrieve JSON documents
|
||||
4. **Session Management** - Store user sessions
|
||||
|
||||
## References
|
||||
|
||||
- [MongoDB Official Documentation](https://docs.mongodb.com/)
|
||||
- [MCP Documentation](https://modelcontextprotocol.io/)
|
||||
- [Docker Hub - mongo](https://hub.docker.com/_/mongo)
|
||||
|
||||
## License
|
||||
|
||||
MIT License
|
||||
104
mcp-servers/mongodb/README.zh.md
Normal file
104
mcp-servers/mongodb/README.zh.md
Normal file
@@ -0,0 +1,104 @@
|
||||
# MongoDB MCP Server
|
||||
|
||||
MongoDB MCP Server 提供通过模型上下文协议(MCP)与 MongoDB 数据库交互的能力,包括数据查询、插入、更新和集合管理。
|
||||
|
||||
## 功能特性
|
||||
|
||||
- 📊 **数据库操作** - 支持 CRUD 操作
|
||||
- 🔍 **查询和聚合** - 复杂查询和聚合管道
|
||||
- 📝 **集合管理** - 创建、删除、修改集合
|
||||
- 🔐 **身份认证** - 内置认证支持
|
||||
- 📈 **监控** - 健康检查和资源监控
|
||||
- 🌐 **RESTful API** - 基于 MCP 协议的 API 接口
|
||||
|
||||
## 架构
|
||||
|
||||
该服务包含两个容器:
|
||||
|
||||
- **mcp-mongodb**:MCP 协议适配器,提供 API 接口
|
||||
- **mongodb**:MongoDB 数据库实例
|
||||
|
||||
## 环境变量
|
||||
|
||||
| 变量 | 默认值 | 说明 |
|
||||
| --------------------------- | ------------------------- | -------------------------------- |
|
||||
| `MCP_MONGODB_VERSION` | `latest` | MCP MongoDB 服务版本 |
|
||||
| `MONGODB_VERSION` | `7` | MongoDB 版本 |
|
||||
| `MCP_MONGODB_PORT_OVERRIDE` | `8000` | MCP 服务端口 |
|
||||
| `MONGODB_PORT_OVERRIDE` | `27017` | MongoDB 端口 |
|
||||
| `MONGODB_URI` | `mongodb://mongodb:27017` | MongoDB 连接 URI |
|
||||
| `MONGODB_DATABASE` | `mcp_db` | 数据库名称 |
|
||||
| `MONGO_ROOT_USERNAME` | `admin` | 管理员用户名 |
|
||||
| `MONGO_ROOT_PASSWORD` | `password` | 管理员密码(⚠️ 生产环境请修改!) |
|
||||
| `TZ` | `UTC` | 时区 |
|
||||
|
||||
## 快速开始
|
||||
|
||||
### 1. 配置环境
|
||||
|
||||
创建 `.env` 文件:
|
||||
|
||||
```env
|
||||
MCP_MONGODB_VERSION=latest
|
||||
MONGODB_VERSION=7
|
||||
MCP_MONGODB_PORT_OVERRIDE=8000
|
||||
MONGODB_PORT_OVERRIDE=27017
|
||||
MONGODB_DATABASE=mcp_db
|
||||
MONGO_ROOT_USERNAME=admin
|
||||
MONGO_ROOT_PASSWORD=your_secure_password
|
||||
TZ=Asia/Shanghai
|
||||
```
|
||||
|
||||
### 2. 启动服务
|
||||
|
||||
```bash
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
### 3. 验证服务
|
||||
|
||||
检查 MCP 服务:
|
||||
|
||||
```bash
|
||||
curl http://localhost:8000/health
|
||||
```
|
||||
|
||||
连接 MongoDB:
|
||||
|
||||
```bash
|
||||
docker compose exec mongodb mongosh -u admin -p your_secure_password
|
||||
```
|
||||
|
||||
## 资源需求
|
||||
|
||||
- **MCP 服务**:128MB-512MB 内存,0.25-1.0 CPU
|
||||
- **MongoDB**:512MB-2GB 内存,0.5-2.0 CPU
|
||||
|
||||
## 安全建议
|
||||
|
||||
1. **修改默认密码**:生产环境务必修改 `MONGO_ROOT_PASSWORD`
|
||||
2. **网络隔离**:使用内部网络,避免 MongoDB 端口暴露到公网
|
||||
3. **启用认证**:确保 MongoDB 认证已启用
|
||||
4. **定期备份**:设置定期数据备份计划
|
||||
|
||||
## 数据持久化
|
||||
|
||||
- `mongodb_data`:MongoDB 数据目录
|
||||
- `mongodb_config`:MongoDB 配置目录
|
||||
|
||||
## 常见使用场景
|
||||
|
||||
1. **应用后端** - 作为应用程序的数据库后端
|
||||
2. **数据分析** - 存储和查询分析数据
|
||||
3. **文档存储** - 存储和检索 JSON 文档
|
||||
4. **会话管理** - 存储用户会话
|
||||
|
||||
## 参考链接
|
||||
|
||||
- [MongoDB 官方文档](https://docs.mongodb.com/)
|
||||
- [MCP 文档](https://modelcontextprotocol.io/)
|
||||
- [Docker Hub - mongo](https://hub.docker.com/_/mongo)
|
||||
|
||||
## 许可证
|
||||
|
||||
MIT License
|
||||
70
mcp-servers/mongodb/docker-compose.yaml
Normal file
70
mcp-servers/mongodb/docker-compose.yaml
Normal file
@@ -0,0 +1,70 @@
|
||||
x-default: &default
|
||||
restart: unless-stopped
|
||||
logging:
|
||||
driver: json-file
|
||||
options:
|
||||
max-size: 100m
|
||||
max-file: "3"
|
||||
|
||||
services:
|
||||
mcp-mongodb:
|
||||
<<: *default
|
||||
image: mcp/mongodb:${MCP_MONGODB_VERSION:-latest}
|
||||
environment:
|
||||
- MONGODB_URI=${MONGODB_URI:-mongodb://mongodb:27017}
|
||||
- MONGODB_DATABASE=${MONGODB_DATABASE:-mcp_db}
|
||||
- MCP_HOST=0.0.0.0
|
||||
- TZ=${TZ:-UTC}
|
||||
ports:
|
||||
- "${MCP_MONGODB_PORT_OVERRIDE:-8000}:8000"
|
||||
depends_on:
|
||||
mongodb:
|
||||
condition: service_healthy
|
||||
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
|
||||
|
||||
mongodb:
|
||||
<<: *default
|
||||
image: mongo:${MONGODB_VERSION:-7}
|
||||
environment:
|
||||
- MONGO_INITDB_ROOT_USERNAME=${MONGO_ROOT_USERNAME:-admin}
|
||||
- MONGO_INITDB_ROOT_PASSWORD=${MONGO_ROOT_PASSWORD:-password}
|
||||
- MONGO_INITDB_DATABASE=${MONGODB_DATABASE:-mcp_db}
|
||||
- TZ=${TZ:-UTC}
|
||||
ports:
|
||||
- "${MONGODB_PORT_OVERRIDE:-27017}:27017"
|
||||
volumes:
|
||||
- mongodb_data:/data/db
|
||||
- mongodb_config:/data/configdb
|
||||
healthcheck:
|
||||
test: ["CMD", "mongosh", "--eval", "db.adminCommand('ping')"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
start_period: 30s
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
cpus: '2.00'
|
||||
memory: 2G
|
||||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 512M
|
||||
|
||||
volumes:
|
||||
mongodb_data:
|
||||
driver: local
|
||||
mongodb_config:
|
||||
driver: local
|
||||
8
mcp-servers/playwright/.env.example
Normal file
8
mcp-servers/playwright/.env.example
Normal file
@@ -0,0 +1,8 @@
|
||||
# Docker image version
|
||||
PLAYWRIGHT_VERSION=latest
|
||||
|
||||
# Host port override
|
||||
PLAYWRIGHT_PORT_OVERRIDE=8000
|
||||
|
||||
# Timezone
|
||||
TZ=UTC
|
||||
67
mcp-servers/playwright/README.md
Normal file
67
mcp-servers/playwright/README.md
Normal file
@@ -0,0 +1,67 @@
|
||||
# Playwright MCP Server
|
||||
|
||||
Playwright MCP Server provides browser automation and web scraping capabilities through the Model Context Protocol.
|
||||
|
||||
## Features
|
||||
|
||||
- 🌐 **Browser Automation** - Automate browser operations
|
||||
- 📸 **Screenshot Capture** - Capture web page screenshots
|
||||
- 🔍 **Web Scraping** - Intelligent web content extraction
|
||||
- 📝 **Form Filling** - Automated form filling
|
||||
- 🎭 **Multi-Browser** - Support for Chromium, Firefox, WebKit
|
||||
- 🔐 **Cookie & Session** - Cookie and session management
|
||||
|
||||
## Environment Variables
|
||||
|
||||
| Variable | Default | Description |
|
||||
| -------------------------- | -------- | -------------------- |
|
||||
| `PLAYWRIGHT_VERSION` | `latest` | Docker image version |
|
||||
| `PLAYWRIGHT_PORT_OVERRIDE` | `8000` | Service port |
|
||||
| `TZ` | `UTC` | Timezone |
|
||||
|
||||
## Quick Start
|
||||
|
||||
### 1. Configure Environment
|
||||
|
||||
Create a `.env` file:
|
||||
|
||||
```env
|
||||
PLAYWRIGHT_VERSION=latest
|
||||
PLAYWRIGHT_PORT_OVERRIDE=8000
|
||||
TZ=Asia/Shanghai
|
||||
```
|
||||
|
||||
### 2. Start Service
|
||||
|
||||
```bash
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
### 3. Verify Service
|
||||
|
||||
```bash
|
||||
curl http://localhost:8000/health
|
||||
```
|
||||
|
||||
## Resource Requirements
|
||||
|
||||
- Minimum memory: 512MB
|
||||
- Recommended memory: 2GB
|
||||
- Shared memory: 2GB (configured)
|
||||
|
||||
## Common Use Cases
|
||||
|
||||
1. **Web Screenshots** - Automatically visit and capture screenshots
|
||||
2. **Data Scraping** - Extract data from dynamic web pages
|
||||
3. **UI Testing** - Automated UI testing scenarios
|
||||
4. **Form Automation** - Batch fill and submit forms
|
||||
|
||||
## References
|
||||
|
||||
- [Playwright Official Site](https://playwright.dev/)
|
||||
- [MCP Documentation](https://modelcontextprotocol.io/)
|
||||
- [Docker Hub - mcp/playwright](https://hub.docker.com/r/mcp/playwright)
|
||||
|
||||
## License
|
||||
|
||||
MIT License
|
||||
67
mcp-servers/playwright/README.zh.md
Normal file
67
mcp-servers/playwright/README.zh.md
Normal file
@@ -0,0 +1,67 @@
|
||||
# Playwright MCP Server
|
||||
|
||||
Playwright MCP Server 是一个基于 Playwright 的模型上下文协议(MCP)服务器,提供浏览器自动化和网页抓取功能。
|
||||
|
||||
## 功能特性
|
||||
|
||||
- 🌐 **浏览器自动化** - 自动化浏览器操作
|
||||
- 📸 **截图捕获** - 捕获网页截图
|
||||
- 🔍 **网页抓取** - 智能提取网页内容
|
||||
- 📝 **表单填写** - 自动化表单填写
|
||||
- 🎭 **多浏览器支持** - 支持 Chromium、Firefox、WebKit
|
||||
- 🔐 **Cookie 和会话管理** - Cookie 和会话管理
|
||||
|
||||
## 环境变量
|
||||
|
||||
| 变量 | 默认值 | 说明 |
|
||||
| -------------------------- | -------- | --------------- |
|
||||
| `PLAYWRIGHT_VERSION` | `latest` | Docker 镜像版本 |
|
||||
| `PLAYWRIGHT_PORT_OVERRIDE` | `8000` | 服务端口 |
|
||||
| `TZ` | `UTC` | 时区 |
|
||||
|
||||
## 快速开始
|
||||
|
||||
### 1. 配置环境
|
||||
|
||||
创建 `.env` 文件:
|
||||
|
||||
```env
|
||||
PLAYWRIGHT_VERSION=latest
|
||||
PLAYWRIGHT_PORT_OVERRIDE=8000
|
||||
TZ=Asia/Shanghai
|
||||
```
|
||||
|
||||
### 2. 启动服务
|
||||
|
||||
```bash
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
### 3. 验证服务
|
||||
|
||||
```bash
|
||||
curl http://localhost:8000/health
|
||||
```
|
||||
|
||||
## 资源需求
|
||||
|
||||
- 最小内存:512MB
|
||||
- 推荐内存:2GB
|
||||
- 共享内存:2GB(已配置)
|
||||
|
||||
## 常见使用场景
|
||||
|
||||
1. **网页截图** - 自动访问并捕获截图
|
||||
2. **数据抓取** - 从动态网页提取数据
|
||||
3. **UI 测试** - 自动化 UI 测试场景
|
||||
4. **表单自动化** - 批量填写和提交表单
|
||||
|
||||
## 参考链接
|
||||
|
||||
- [Playwright 官方网站](https://playwright.dev/)
|
||||
- [MCP 文档](https://modelcontextprotocol.io/)
|
||||
- [Docker Hub - mcp/playwright](https://hub.docker.com/r/mcp/playwright)
|
||||
|
||||
## 许可证
|
||||
|
||||
MIT License
|
||||
42
mcp-servers/playwright/docker-compose.yaml
Normal file
42
mcp-servers/playwright/docker-compose.yaml
Normal file
@@ -0,0 +1,42 @@
|
||||
x-default: &default
|
||||
restart: unless-stopped
|
||||
logging:
|
||||
driver: json-file
|
||||
options:
|
||||
max-size: 100m
|
||||
max-file: "3"
|
||||
|
||||
services:
|
||||
playwright:
|
||||
<<: *default
|
||||
image: mcp/playwright:${PLAYWRIGHT_VERSION:-latest}
|
||||
environment:
|
||||
- MCP_HOST=0.0.0.0
|
||||
- TZ=${TZ:-UTC}
|
||||
ports:
|
||||
- "${PLAYWRIGHT_PORT_OVERRIDE:-8000}:8000"
|
||||
# 如果需要访问本地文件,可以挂载卷
|
||||
volumes:
|
||||
- playwright_data:/app/data
|
||||
healthcheck:
|
||||
test: ["CMD", "wget", "--spider", "-q", "http://localhost:8000/health"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 20s
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
cpus: '2.00'
|
||||
memory: 2G
|
||||
reservations:
|
||||
cpus: '0.5'
|
||||
memory: 512M
|
||||
# Playwright 需要额外的权限来运行浏览器
|
||||
security_opt:
|
||||
- seccomp:unconfined
|
||||
shm_size: '2gb'
|
||||
|
||||
volumes:
|
||||
playwright_data:
|
||||
driver: local
|
||||
14
mcp-servers/redis-mcp/.env.example
Normal file
14
mcp-servers/redis-mcp/.env.example
Normal file
@@ -0,0 +1,14 @@
|
||||
# MCP Redis version
|
||||
MCP_REDIS_VERSION=latest
|
||||
|
||||
# MCP port (default: 8000)
|
||||
MCP_PORT_OVERRIDE=8000
|
||||
|
||||
# Redis version
|
||||
REDIS_VERSION=7-alpine
|
||||
|
||||
# Redis port (default: 6379)
|
||||
REDIS_PORT_OVERRIDE=6379
|
||||
|
||||
# Timezone
|
||||
TZ=UTC
|
||||
40
mcp-servers/redis-mcp/README.md
Normal file
40
mcp-servers/redis-mcp/README.md
Normal file
@@ -0,0 +1,40 @@
|
||||
# Redis MCP Server
|
||||
|
||||
[English](./README.md) | [中文](./README.zh.md)
|
||||
|
||||
This service deploys an MCP (Model Context Protocol) server for Redis, providing a standardized interface to interact with Redis databases.
|
||||
|
||||
## Services
|
||||
|
||||
- `mcp`: The MCP Redis server
|
||||
- `redis`: Redis database service
|
||||
|
||||
## Environment Variables
|
||||
|
||||
| Variable Name | Description | Default Value |
|
||||
| ------------------- | ----------------------------------------------------------------- | ------------- |
|
||||
| MCP_REDIS_VERSION | MCP Redis image version | `latest` |
|
||||
| MCP_PORT_OVERRIDE | Host port mapping for MCP server (maps to port 8000 in container) | 8000 |
|
||||
| REDIS_VERSION | Redis image version | `7-alpine` |
|
||||
| REDIS_PORT_OVERRIDE | Host port mapping for Redis (maps to port 6379 in container) | 6379 |
|
||||
| TZ | Timezone setting | `UTC` |
|
||||
|
||||
Please modify the `.env` file as needed for your use case.
|
||||
|
||||
## Volumes
|
||||
|
||||
- `redis_data`: Redis data persistence
|
||||
|
||||
## Ports
|
||||
|
||||
- `8000`: MCP server API
|
||||
- `6379`: Redis database
|
||||
|
||||
## Usage
|
||||
|
||||
The MCP server provides a standardized interface to interact with Redis. Access the MCP API at `http://localhost:8000`.
|
||||
|
||||
## Additional Information
|
||||
|
||||
- Model Context Protocol: <https://modelcontextprotocol.io/>
|
||||
- Redis Documentation: <https://redis.io/documentation>
|
||||
40
mcp-servers/redis-mcp/README.zh.md
Normal file
40
mcp-servers/redis-mcp/README.zh.md
Normal file
@@ -0,0 +1,40 @@
|
||||
# Redis MCP 服务器
|
||||
|
||||
[English](./README.md) | [中文](./README.zh.md)
|
||||
|
||||
此服务部署一个用于 Redis 的 MCP(模型上下文协议)服务器,提供与 Redis 数据库交互的标准化接口。
|
||||
|
||||
## 服务
|
||||
|
||||
- `mcp`:MCP Redis 服务器
|
||||
- `redis`:Redis 数据库服务
|
||||
|
||||
## 环境变量
|
||||
|
||||
| 变量名 | 说明 | 默认值 |
|
||||
| ------------------- | ----------------------------------------------- | ---------- |
|
||||
| MCP_REDIS_VERSION | MCP Redis 镜像版本 | `latest` |
|
||||
| MCP_PORT_OVERRIDE | MCP 服务器主机端口映射(映射到容器内端口 8000) | 8000 |
|
||||
| REDIS_VERSION | Redis 镜像版本 | `7-alpine` |
|
||||
| REDIS_PORT_OVERRIDE | Redis 主机端口映射(映射到容器内端口 6379) | 6379 |
|
||||
| TZ | 时区设置 | `UTC` |
|
||||
|
||||
请根据实际需求修改 `.env` 文件。
|
||||
|
||||
## 卷
|
||||
|
||||
- `redis_data`:Redis 数据持久化
|
||||
|
||||
## 端口
|
||||
|
||||
- `8000`:MCP 服务器 API
|
||||
- `6379`:Redis 数据库
|
||||
|
||||
## 使用方法
|
||||
|
||||
MCP 服务器提供了与 Redis 交互的标准化接口。访问 MCP API:`http://localhost:8000`。
|
||||
|
||||
## 附加信息
|
||||
|
||||
- 模型上下文协议:<https://modelcontextprotocol.io/>
|
||||
- Redis 文档:<https://redis.io/documentation>
|
||||
64
mcp-servers/redis-mcp/docker-compose.yaml
Normal file
64
mcp-servers/redis-mcp/docker-compose.yaml
Normal file
@@ -0,0 +1,64 @@
|
||||
x-default: &default
|
||||
restart: unless-stopped
|
||||
logging:
|
||||
driver: json-file
|
||||
options:
|
||||
max-size: 100m
|
||||
max-file: "3"
|
||||
|
||||
services:
|
||||
mcp:
|
||||
<<: *default
|
||||
image: mcp/redis:${MCP_REDIS_VERSION:-latest}
|
||||
environment:
|
||||
- REDIS_HOST=redis
|
||||
- REDIS_PORT=6379
|
||||
- MCP_HOST=0.0.0.0
|
||||
- TZ=${TZ:-UTC}
|
||||
ports:
|
||||
- "${MCP_PORT_OVERRIDE:-8000}:8000"
|
||||
depends_on:
|
||||
redis:
|
||||
condition: service_healthy
|
||||
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
|
||||
|
||||
redis:
|
||||
<<: *default
|
||||
image: redis:${REDIS_VERSION:-7-alpine}
|
||||
command: redis-server --appendonly yes
|
||||
ports:
|
||||
- "${REDIS_PORT_OVERRIDE:-6379}:6379"
|
||||
volumes:
|
||||
- redis_data:/data
|
||||
environment:
|
||||
- TZ=${TZ:-UTC}
|
||||
healthcheck:
|
||||
test: ["CMD", "redis-cli", "ping"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 10s
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
cpus: '0.50'
|
||||
memory: 256M
|
||||
reservations:
|
||||
cpus: '0.10'
|
||||
memory: 64M
|
||||
|
||||
volumes:
|
||||
redis_data:
|
||||
14
mcp-servers/rust-mcp-filesystem/.env.example
Normal file
14
mcp-servers/rust-mcp-filesystem/.env.example
Normal file
@@ -0,0 +1,14 @@
|
||||
# Docker image version
|
||||
RUST_MCP_FILESYSTEM_VERSION=latest
|
||||
|
||||
# Host port override
|
||||
RUST_MCP_FILESYSTEM_PORT_OVERRIDE=8000
|
||||
|
||||
# Allowed paths (inside container)
|
||||
ALLOWED_PATHS=/projects
|
||||
|
||||
# Host workspace path to mount
|
||||
HOST_WORKSPACE_PATH=./workspace
|
||||
|
||||
# Timezone
|
||||
TZ=UTC
|
||||
119
mcp-servers/rust-mcp-filesystem/README.md
Normal file
119
mcp-servers/rust-mcp-filesystem/README.md
Normal file
@@ -0,0 +1,119 @@
|
||||
# Rust MCP Filesystem Server
|
||||
|
||||
Rust MCP Filesystem Server is a high-performance filesystem MCP server built with Rust, providing fast and secure file operations.
|
||||
|
||||
## Features
|
||||
|
||||
- 🚀 **High Performance** - Rust-powered high-performance file operations
|
||||
- 🔒 **Secure Access** - Configurable access control
|
||||
- 📁 **File Operations** - File read/write, directory traversal
|
||||
- 🔍 **File Search** - Fast file searching
|
||||
- 📊 **File Info** - File metadata queries
|
||||
- ⚡ **Async I/O** - Asynchronous file I/O operations
|
||||
|
||||
## Environment Variables
|
||||
|
||||
| Variable | Default | Description |
|
||||
| ----------------------------------- | ------------- | ---------------------------- |
|
||||
| `RUST_MCP_FILESYSTEM_VERSION` | `latest` | Docker image version |
|
||||
| `RUST_MCP_FILESYSTEM_PORT_OVERRIDE` | `8000` | Service port |
|
||||
| `ALLOWED_PATHS` | `/projects` | Allowed access paths |
|
||||
| `HOST_WORKSPACE_PATH` | `./workspace` | Host workspace path to mount |
|
||||
| `TZ` | `UTC` | Timezone |
|
||||
|
||||
## Quick Start
|
||||
|
||||
### 1. Configure Environment
|
||||
|
||||
Create a `.env` file:
|
||||
|
||||
```env
|
||||
RUST_MCP_FILESYSTEM_VERSION=latest
|
||||
RUST_MCP_FILESYSTEM_PORT_OVERRIDE=8000
|
||||
ALLOWED_PATHS=/projects
|
||||
HOST_WORKSPACE_PATH=/path/to/your/workspace
|
||||
TZ=Asia/Shanghai
|
||||
```
|
||||
|
||||
### 2. Configure File Access
|
||||
|
||||
In `docker-compose.yaml`, configure directories to access:
|
||||
|
||||
```yaml
|
||||
volumes:
|
||||
# Read-only access
|
||||
- /path/to/workspace:/projects/workspace:ro
|
||||
# Read-write access (remove :ro)
|
||||
- /path/to/data:/projects/data
|
||||
```
|
||||
|
||||
### 3. Start Service
|
||||
|
||||
```bash
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
### 4. Verify Service
|
||||
|
||||
```bash
|
||||
curl http://localhost:8000/health
|
||||
```
|
||||
|
||||
## Security Features
|
||||
|
||||
The service implements multiple layers of security:
|
||||
|
||||
1. **Read-only Filesystem**: Container filesystem set to read-only
|
||||
2. **Permission Restrictions**: Minimized container permissions
|
||||
3. **Path Restrictions**: Only configured paths can be accessed
|
||||
4. **No Privilege Escalation**: Prevents privilege escalation
|
||||
5. **Capability Restrictions**: Only necessary Linux capabilities retained
|
||||
|
||||
## Performance Characteristics
|
||||
|
||||
- ✅ **Zero-copy**: Leverages Rust's zero-copy features
|
||||
- ✅ **Async I/O**: High-concurrency file operations
|
||||
- ✅ **Memory Safety**: Memory safety guaranteed by Rust
|
||||
- ✅ **Low Resource Usage**: Minimum 64MB memory
|
||||
|
||||
## Resource Requirements
|
||||
|
||||
- Minimum memory: 64MB
|
||||
- Recommended memory: 256MB
|
||||
- CPU: 0.25-1.0 cores
|
||||
|
||||
## Common Use Cases
|
||||
|
||||
1. **Code Repository Access** - Allow AI to access and analyze codebases
|
||||
2. **Document Processing** - Read and process document files
|
||||
3. **Log Analysis** - Analyze log files
|
||||
4. **Configuration Management** - Read and update configuration files
|
||||
|
||||
## Security Recommendations
|
||||
|
||||
⚠️ **Important**: When using:
|
||||
|
||||
1. Only mount necessary directories
|
||||
2. Prefer read-only mode (`:ro`)
|
||||
3. Do not mount sensitive system directories
|
||||
4. Regularly audit access logs
|
||||
5. Use firewall to restrict network access
|
||||
|
||||
## Comparison with Other Implementations
|
||||
|
||||
| Feature | Rust Implementation | Node.js Implementation |
|
||||
| ------------- | ------------------- | ---------------------- |
|
||||
| Performance | ⭐⭐⭐⭐⭐ | ⭐⭐⭐ |
|
||||
| Memory Usage | 64MB+ | 128MB+ |
|
||||
| Concurrency | Excellent | Good |
|
||||
| Startup Speed | Fast | Medium |
|
||||
|
||||
## References
|
||||
|
||||
- [Rust Official Site](https://www.rust-lang.org/)
|
||||
- [MCP Documentation](https://modelcontextprotocol.io/)
|
||||
- [Docker Hub - mcp/rust-mcp-filesystem](https://hub.docker.com/r/mcp/rust-mcp-filesystem)
|
||||
|
||||
## License
|
||||
|
||||
MIT License
|
||||
119
mcp-servers/rust-mcp-filesystem/README.zh.md
Normal file
119
mcp-servers/rust-mcp-filesystem/README.zh.md
Normal file
@@ -0,0 +1,119 @@
|
||||
# Rust MCP Filesystem Server
|
||||
|
||||
Rust MCP Filesystem Server 是一个使用 Rust 构建的高性能文件系统 MCP 服务器,提供快速、安全的文件操作能力。
|
||||
|
||||
## 功能特性
|
||||
|
||||
- 🚀 **高性能** - Rust 驱动的高性能文件操作
|
||||
- 🔒 **安全访问** - 可配置的访问控制
|
||||
- 📁 **文件操作** - 文件读写、目录遍历
|
||||
- 🔍 **文件搜索** - 快速文件搜索
|
||||
- 📊 **文件信息** - 文件元数据查询
|
||||
- ⚡ **异步 I/O** - 异步文件 I/O 操作
|
||||
|
||||
## 环境变量
|
||||
|
||||
| 变量 | 默认值 | 说明 |
|
||||
| ----------------------------------- | ------------- | ---------------------- |
|
||||
| `RUST_MCP_FILESYSTEM_VERSION` | `latest` | Docker 镜像版本 |
|
||||
| `RUST_MCP_FILESYSTEM_PORT_OVERRIDE` | `8000` | 服务端口 |
|
||||
| `ALLOWED_PATHS` | `/projects` | 允许访问的路径 |
|
||||
| `HOST_WORKSPACE_PATH` | `./workspace` | 要挂载的主机工作区路径 |
|
||||
| `TZ` | `UTC` | 时区 |
|
||||
|
||||
## 快速开始
|
||||
|
||||
### 1. 配置环境
|
||||
|
||||
创建 `.env` 文件:
|
||||
|
||||
```env
|
||||
RUST_MCP_FILESYSTEM_VERSION=latest
|
||||
RUST_MCP_FILESYSTEM_PORT_OVERRIDE=8000
|
||||
ALLOWED_PATHS=/projects
|
||||
HOST_WORKSPACE_PATH=/path/to/your/workspace
|
||||
TZ=Asia/Shanghai
|
||||
```
|
||||
|
||||
### 2. 配置文件访问
|
||||
|
||||
在 `docker-compose.yaml` 中配置需要访问的目录:
|
||||
|
||||
```yaml
|
||||
volumes:
|
||||
# 只读访问
|
||||
- /path/to/workspace:/projects/workspace:ro
|
||||
# 读写访问(移除 :ro)
|
||||
- /path/to/data:/projects/data
|
||||
```
|
||||
|
||||
### 3. 启动服务
|
||||
|
||||
```bash
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
### 4. 验证服务
|
||||
|
||||
```bash
|
||||
curl http://localhost:8000/health
|
||||
```
|
||||
|
||||
## 安全特性
|
||||
|
||||
该服务实现了多层安全保护:
|
||||
|
||||
1. **只读文件系统**:容器文件系统设置为只读
|
||||
2. **权限限制**:最小化容器权限
|
||||
3. **路径限制**:只能访问配置的允许路径
|
||||
4. **无特权提升**:防止权限提升
|
||||
5. **Capability 限制**:只保留必要的 Linux Capabilities
|
||||
|
||||
## 性能特点
|
||||
|
||||
- ✅ **零拷贝**:利用 Rust 的零拷贝特性
|
||||
- ✅ **异步 I/O**:高并发文件操作
|
||||
- ✅ **内存安全**:Rust 保证的内存安全
|
||||
- ✅ **低资源占用**:最小 64MB 内存
|
||||
|
||||
## 资源需求
|
||||
|
||||
- 最小内存:64MB
|
||||
- 推荐内存:256MB
|
||||
- CPU:0.25-1.0 核心
|
||||
|
||||
## 常见使用场景
|
||||
|
||||
1. **代码库访问** - 让 AI 访问和分析代码库
|
||||
2. **文档处理** - 读取和处理文档文件
|
||||
3. **日志分析** - 分析日志文件
|
||||
4. **配置管理** - 读取和更新配置文件
|
||||
|
||||
## 安全建议
|
||||
|
||||
⚠️ **重要**:使用时请注意:
|
||||
|
||||
1. 只挂载必要的目录
|
||||
2. 优先使用只读模式(`:ro`)
|
||||
3. 不要挂载敏感系统目录
|
||||
4. 定期审查访问日志
|
||||
5. 使用防火墙限制网络访问
|
||||
|
||||
## 与其他实现的对比
|
||||
|
||||
| 特性 | Rust 实现 | Node.js 实现 |
|
||||
| -------- | --------- | ------------ |
|
||||
| 性能 | ⭐⭐⭐⭐⭐ | ⭐⭐⭐ |
|
||||
| 内存占用 | 64MB+ | 128MB+ |
|
||||
| 并发处理 | 优秀 | 良好 |
|
||||
| 启动速度 | 快速 | 中等 |
|
||||
|
||||
## 参考链接
|
||||
|
||||
- [Rust 官方网站](https://www.rust-lang.org/)
|
||||
- [MCP 文档](https://modelcontextprotocol.io/)
|
||||
- [Docker Hub - mcp/rust-mcp-filesystem](https://hub.docker.com/r/mcp/rust-mcp-filesystem)
|
||||
|
||||
## 许可证
|
||||
|
||||
MIT License
|
||||
49
mcp-servers/rust-mcp-filesystem/docker-compose.yaml
Normal file
49
mcp-servers/rust-mcp-filesystem/docker-compose.yaml
Normal file
@@ -0,0 +1,49 @@
|
||||
x-default: &default
|
||||
restart: unless-stopped
|
||||
logging:
|
||||
driver: json-file
|
||||
options:
|
||||
max-size: 100m
|
||||
max-file: "3"
|
||||
|
||||
services:
|
||||
rust-mcp-filesystem:
|
||||
<<: *default
|
||||
image: mcp/rust-mcp-filesystem:${RUST_MCP_FILESYSTEM_VERSION:-latest}
|
||||
environment:
|
||||
- MCP_HOST=0.0.0.0
|
||||
- ALLOWED_PATHS=${ALLOWED_PATHS:-/projects}
|
||||
- TZ=${TZ:-UTC}
|
||||
ports:
|
||||
- "${RUST_MCP_FILESYSTEM_PORT_OVERRIDE:-8000}:8000"
|
||||
volumes:
|
||||
# 挂载需要访问的目录到 /projects 下
|
||||
- ${HOST_WORKSPACE_PATH:-./workspace}:/projects/workspace:ro
|
||||
# 如果需要写入权限,移除 :ro 标志
|
||||
# - ${HOST_DATA_PATH:-./data}:/projects/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: 256M
|
||||
reservations:
|
||||
cpus: '0.25'
|
||||
memory: 64M
|
||||
# 安全限制
|
||||
read_only: true
|
||||
security_opt:
|
||||
- no-new-privileges:true
|
||||
cap_drop:
|
||||
- ALL
|
||||
cap_add:
|
||||
- CHOWN
|
||||
- DAC_OVERRIDE
|
||||
- FOWNER
|
||||
- SETGID
|
||||
- SETUID
|
||||
11
mcp-servers/tavily/.env.example
Normal file
11
mcp-servers/tavily/.env.example
Normal file
@@ -0,0 +1,11 @@
|
||||
# Tavily API Key (required)
|
||||
TAVILY_API_KEY=your_tavily_api_key_here
|
||||
|
||||
# Docker image version
|
||||
TAVILY_VERSION=latest
|
||||
|
||||
# Host port override
|
||||
TAVILY_PORT_OVERRIDE=8000
|
||||
|
||||
# Timezone
|
||||
TZ=UTC
|
||||
59
mcp-servers/tavily/README.md
Normal file
59
mcp-servers/tavily/README.md
Normal file
@@ -0,0 +1,59 @@
|
||||
# Tavily MCP Server
|
||||
|
||||
Tavily MCP Server provides powerful web search and data extraction capabilities through the Model Context Protocol.
|
||||
|
||||
## Features
|
||||
|
||||
- 🔍 **Web Search** - Intelligent web search using Tavily API
|
||||
- 📄 **Content Extraction** - Extract and process web page content
|
||||
- 🗺️ **Web Mapping** - Discover and map website structures
|
||||
- 📰 **News Search** - Search for latest news and articles
|
||||
- 🌐 **Multi-source** - Aggregate search across multiple data sources
|
||||
|
||||
## Environment Variables
|
||||
|
||||
| Variable | Default | Description |
|
||||
| ---------------------- | -------- | ------------------------- |
|
||||
| `TAVILY_API_KEY` | - | Tavily API key (required) |
|
||||
| `TAVILY_VERSION` | `latest` | Docker image version |
|
||||
| `TAVILY_PORT_OVERRIDE` | `8000` | Service port |
|
||||
| `TZ` | `UTC` | Timezone |
|
||||
|
||||
## Quick Start
|
||||
|
||||
### 1. Configure Environment
|
||||
|
||||
Create a `.env` file:
|
||||
|
||||
```env
|
||||
TAVILY_API_KEY=your_tavily_api_key_here
|
||||
TAVILY_VERSION=latest
|
||||
TAVILY_PORT_OVERRIDE=8000
|
||||
TZ=Asia/Shanghai
|
||||
```
|
||||
|
||||
### 2. Start Service
|
||||
|
||||
```bash
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
### 3. Verify Service
|
||||
|
||||
```bash
|
||||
curl http://localhost:8000/health
|
||||
```
|
||||
|
||||
## Get API Key
|
||||
|
||||
Visit [Tavily](https://tavily.com/) to obtain an API key.
|
||||
|
||||
## References
|
||||
|
||||
- [Tavily Official Site](https://tavily.com/)
|
||||
- [MCP Documentation](https://modelcontextprotocol.io/)
|
||||
- [Docker Hub - mcp/tavily](https://hub.docker.com/r/mcp/tavily)
|
||||
|
||||
## License
|
||||
|
||||
MIT License
|
||||
59
mcp-servers/tavily/README.zh.md
Normal file
59
mcp-servers/tavily/README.zh.md
Normal file
@@ -0,0 +1,59 @@
|
||||
# Tavily MCP 服务器
|
||||
|
||||
Tavily MCP 服务器通过模型上下文协议提供强大的网络搜索和数据提取功能。
|
||||
|
||||
## 功能特性
|
||||
|
||||
- 🔍 **网络搜索** - 使用 Tavily API 进行智能网络搜索
|
||||
- 📄 **内容提取** - 提取和处理网页内容
|
||||
- 🗺️ **网站映射** - 发现和映射网站结构
|
||||
- 📰 **新闻搜索** - 搜索最新新闻和文章
|
||||
- 🌐 **多源聚合** - 跨多个数据源的聚合搜索
|
||||
|
||||
## 环境变量
|
||||
|
||||
| 变量 | 默认值 | 说明 |
|
||||
| ---------------------- | -------- | ----------------------- |
|
||||
| `TAVILY_API_KEY` | - | Tavily API 密钥(必需) |
|
||||
| `TAVILY_VERSION` | `latest` | Docker 镜像版本 |
|
||||
| `TAVILY_PORT_OVERRIDE` | `8000` | 服务端口 |
|
||||
| `TZ` | `UTC` | 时区 |
|
||||
|
||||
## 快速开始
|
||||
|
||||
### 1. 配置环境
|
||||
|
||||
创建 `.env` 文件:
|
||||
|
||||
```env
|
||||
TAVILY_API_KEY=your_tavily_api_key_here
|
||||
TAVILY_VERSION=latest
|
||||
TAVILY_PORT_OVERRIDE=8000
|
||||
TZ=Asia/Shanghai
|
||||
```
|
||||
|
||||
### 2. 启动服务
|
||||
|
||||
```bash
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
### 3. 验证服务
|
||||
|
||||
```bash
|
||||
curl http://localhost:8000/health
|
||||
```
|
||||
|
||||
## 获取 API 密钥
|
||||
|
||||
访问 [Tavily](https://tavily.com/) 获取 API 密钥。
|
||||
|
||||
## 参考链接
|
||||
|
||||
- [Tavily 官网](https://tavily.com/)
|
||||
- [MCP 官方文档](https://modelcontextprotocol.io/)
|
||||
- [Docker Hub - mcp/tavily](https://hub.docker.com/r/mcp/tavily)
|
||||
|
||||
## 许可证
|
||||
|
||||
MIT License
|
||||
31
mcp-servers/tavily/docker-compose.yaml
Normal file
31
mcp-servers/tavily/docker-compose.yaml
Normal file
@@ -0,0 +1,31 @@
|
||||
x-default: &default
|
||||
restart: unless-stopped
|
||||
logging:
|
||||
driver: json-file
|
||||
options:
|
||||
max-size: 100m
|
||||
max-file: "3"
|
||||
|
||||
services:
|
||||
tavily:
|
||||
<<: *default
|
||||
image: mcp/tavily:${TAVILY_VERSION:-latest}
|
||||
environment:
|
||||
- TAVILY_API_KEY=${TAVILY_API_KEY}
|
||||
- TZ=${TZ:-UTC}
|
||||
ports:
|
||||
- "${TAVILY_PORT_OVERRIDE:-8000}:8000"
|
||||
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
|
||||
Reference in New Issue
Block a user