Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions plugins/wasm-go/mcp-servers/mcp-bravesearch/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Brave Search MCP Server

An MCP server implementation that integrates the Brave Search API, providing web and local search capabilities.

## Features

- **Web Search**: Supports general queries, news, articles, with pagination and time control
- **Local Search**: Find businesses, restaurants, and services with detailed information

Source code: [https://github.com/modelcontextprotocol/servers/tree/main/src/brave-search](https://github.com/modelcontextprotocol/servers/tree/main/src/brave-search)

# Usage Guide

## Get API-KEY

1. Register for a Brave Search API account [Visit official website](https://brave.com/search/api/)
2. Choose a plan (free plan includes 2000 queries per month)
3. Generate API key through developer console [Go to console](https://api.search.brave.com/app/keys)

## Generate SSE URL

On the MCP Server interface, log in and enter the API-KEY to generate the URL.

## Configure MCP Client

On the user's MCP Client interface, add the generated SSE URL to the MCP Server list.

```json
"mcpServers": {
"bravesearch": {
"url": "http://mcp.higress.ai/mcp-brave-search/{generate_key}",
}
}
```
38 changes: 38 additions & 0 deletions plugins/wasm-go/mcp-servers/mcp-bravesearch/README_ZH.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Brave Search MCP Server

一个集成Brave搜索API的MCP服务器实现,提供网页和本地搜索功能。

## 功能

- **网页搜索**:支持通用查询、新闻、文章,具备分页和时效性控制
- **本地搜索**:查找带有详细信息的企业、餐厅和服务

源码地址:[https://github.com/modelcontextprotocol/servers/tree/main/src/brave-search](https://github.com/modelcontextprotocol/servers/tree/main/src/brave-search)

# 使用教程

## 获取 API-KEY

1. 注册Brave搜索API账号 [访问官网](https://brave.com/search/api/)
2. 选择套餐(免费套餐每月包含2000次查询)
3. 通过开发者控制台生成 API 密钥 [前往控制台](https://api.search.brave.com/app/keys)

## 生成 SSE URL

在 MCP Server 界面,登录后输入 API-KEY,生成URL。



## 配置 MCP Client

在用户的 MCP Client 界面,将生成的 SSE URL添加到MCP Server列表中。

```json
"mcpServers": {
"bravesearch": {
"url": "http://mcp.higress.ai/mcp-brave-search/{generate_key}",
}
}
```


76 changes: 76 additions & 0 deletions plugins/wasm-go/mcp-servers/mcp-bravesearch/mcp-server.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
server:
name: brave-search-server
config:
apiKey: ""
tools:
- name: brave_web_search
description: "使用Brave Search API进行网页搜索,适用于一般查询、新闻、文章和在线内容。支持分页、内容过滤和新鲜度控制。每次请求最多返回20条结果。"
args:
- name: query
description: "搜索查询(最多400字符,50个词)"
type: string
required: true
- name: count
description: "结果数量(1-20,默认10)"
type: integer
required: false
default: 10
- name: offset
description: "分页偏移量(最大9,默认0)"
type: integer
required: false
default: 0
requestTemplate:
url: "https://api.search.brave.com/res/v1/web/search"
method: GET
argsToUrlParam: true
headers:
- key: Accept
value: "application/json"
- key: Accept-Encoding
value: "gzip"
- key: X-Subscription-Token
value: "{{.config.apiKey}}"
responseTemplate:
body: |
{{- range $index, $item := .web.results }}
## 结果 {{add $index 1}}
- **标题**: {{ $item.title }}
- **描述**: {{ $item.description }}
- **URL**: {{ $item.url }}
{{- end }}

- name: brave_local_search
description: "使用Brave的Local Search API搜索本地商家和地点。适用于与物理位置、商家、餐厅、服务等相关的查询。返回详细信息包括商家名称、地址、评分、评论数、电话号码、营业时间等。如果没有本地结果,会自动回退到网页搜索。"
args:
- name: query
description: "本地搜索查询(例如'Central Park附近的披萨')"
type: string
required: true
- name: count
description: "结果数量(1-20,默认5)"
type: integer
required: false
default: 5
requestTemplate:
url: "https://api.search.brave.com/res/v1/web/search"
method: GET
argsToUrlParam: true
headers:
- key: Accept
value: "application/json"
- key: Accept-Encoding
value: "gzip"
- key: X-Subscription-Token
value: "{{.config.apiKey}}"
responseTemplate:
body: |
{{- range $index, $item := .results }}
## 结果 {{add $index 1}}
- **名称**: {{ $item.name }}
- **地址**: {{ $item.address.streetAddress }}, {{ $item.address.addressLocality }}, {{ $item.address.addressRegion }} {{ $item.address.postalCode }}
- **电话**: {{ $item.phone }}
- **评分**: {{ $item.rating.ratingValue }} ({{ $item.rating.ratingCount }} 条评论)
- **价格范围**: {{ $item.priceRange }}
- **营业时间**: {{ join $item.openingHours ", " }}
{{- end }}
27 changes: 27 additions & 0 deletions plugins/wasm-go/mcp-servers/mcp-chatppt/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# ChatPPT MCP Server

Biyou Technology's MCP Server currently covers 18 intelligent document processing interfaces, including but not limited to PPT creation, PPT beautification, PPT generation, resume creation, resume analysis, and person-job matching. Users can build their own document creation tools through the server, enabling more possibilities for intelligent document creation.

Source code: [https://github.com/YOOTeam/chatppt-mcp](https://github.com/YOOTeam/chatppt-mcp)

## Usage Guide

### Get API-KEY

Refer to the official documentation to get API-KEY [Create Application and Get Token](https://wiki.yoo-ai.com/mcp/McpServe/serve1.3.html)

### Generate SSE URL

On the MCP Server interface, log in and enter the API-KEY to generate the URL.

### Configure MCP Client

On the user's MCP Client interface, add the generated SSE URL to the MCP Server list.

```json
"mcpServers": {
"chatppt": {
"url": "http://mcp.higress.ai/mcp-chatppt/{generate_key}",
}
}
```
28 changes: 28 additions & 0 deletions plugins/wasm-go/mcp-servers/mcp-chatppt/README_ZH.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# ChatPPT MCP Server

必优科技 MCP Server 目前已经覆盖了 18 个智能文档的接口能力,包括但不限于 PPT 创作,PPT 美化,PPT 生成,简历创作,简历分析,人岗匹配等场景下的文档处理能力,用户可通过 server 搭建自己的文档创作工具,让智能文档创作有更多可能。

源码地址: [https://github.com/YOOTeam/chatppt-mcp](https://github.com/YOOTeam/chatppt-mcp)

## 使用教程

### 获取 API-KEY

参考官方文档获取 API-KEY [创建应用获取 Token](https://wiki.yoo-ai.com/mcp/McpServe/serve1.3.html)

### 生成 SSE URL

在 MCP Server 界面,登录后输入 API-KEY,生成URL。

### 配置 MCP Client

在用户的 MCP Client 界面,将生成的 SSE URL添加到 MCP Server列表中。

```json
"mcpServers": {
"chatppt": {
"url": "http://mcp.higress.ai/mcp-chatppt/{generate_key}",
}
}
```

121 changes: 121 additions & 0 deletions plugins/wasm-go/mcp-servers/mcp-chatppt/mcp-server.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
server:
name: chatppt-server
config:
apiKey: ""

tools:
- name: check
description: "查询用户当前配置token"
args: []
requestTemplate:
url: "https://saas.api.yoo-ai.com"
method: GET
headers:
- key: Authorization
value: "Bearer {{.config.apiKey}}"
responseTemplate:
body: |
{
"apiKey": "{{.body}}"
}

- name: query_ppt
description: "根据PPT任务ID查询异步生成结果"
args:
- name: ppt_id
description: "PPT-ID"
type: string
required: true
requestTemplate:
url: "https://saas.api.yoo-ai.com/apps/ppt-result"
method: GET
argsToUrlParam: true
headers:
- key: Authorization
value: "Bearer {{.config.apiKey}}"
responseTemplate:
body: |
{
"status": "{{.body.status}}",
"process_url": "{{.body.process_url}}"
}

- name: build_ppt
description: "根据描述的文本或markdown生成PPT"
args:
- name: text
description: "输入描述的文本或markdown"
type: string
required: true
requestTemplate:
url: "https://saas.api.yoo-ai.com/apps/ppt-create"
method: POST
argsToFormBody: true
headers:
- key: Authorization
value: "Bearer {{.config.apiKey}}"
responseTemplate:
body: |
{
"ppt_id": "{{.body}}"
}

- name: replace_template_ppt
description: "根据PPT-ID执行替换模板"
args:
- name: ppt_id
description: "PPT-ID"
type: string
required: true
requestTemplate:
url: "https://saas.api.yoo-ai.com/apps/ppt-create-task"
method: POST
argsToFormBody: true
headers:
- key: Authorization
value: "Bearer {{.config.apiKey}}"
responseTemplate:
body: |
{
"new_ppt_id": "{{.body}}"
}

- name: download_ppt
description: "生成PPT下载地址"
args:
- name: ppt_id
description: "PPT-ID"
type: string
required: true
requestTemplate:
url: "https://saas.api.yoo-ai.com/apps/ppt-download"
method: GET
argsToUrlParam: true
headers:
- key: Authorization
value: "Bearer {{.config.apiKey}}"
responseTemplate:
body: |
{
"download_url": "{{.body}}"
}

- name: editor_ppt
description: "生成PPT编辑器界面URL"
args:
- name: ppt_id
description: "PPT-ID"
type: string
required: true
requestTemplate:
url: "https://saas.api.yoo-ai.com/apps/ppt-editor"
method: POST
argsToFormBody: true
headers:
- key: Authorization
value: "Bearer {{.config.apiKey}}"
responseTemplate:
body: |
{
"editor_url": "{{.body}}"
}
33 changes: 33 additions & 0 deletions plugins/wasm-go/mcp-servers/mcp-firecrawl/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Firecrawl MCP Server

An implementation of the Model Context Protocol (MCP) server that integrates [Firecrawl](https://github.com/mendableai/firecrawl), providing web scraping capabilities.

## Features

- Supports scraping, crawling, searching, extracting, deep research, and batch scraping
- Supports JavaScript-rendered web page scraping
- URL discovery and crawling
- Web search and content extraction
- Scraping result transformation

## Usage Guide

### Get API-KEY
1. Register for a Firecrawl account [Visit official website](https://www.firecrawl.dev/app)
2. Generate API Key through developer console [Go to console](https://www.firecrawl.dev/app/api-keys)

### Generate SSE URL

On the MCP Server interface, log in and enter the API-KEY to generate the URL.

### Configure MCP Client

On the user's MCP Client interface, add the generated SSE URL to the MCP Server list.

```json
"mcpServers": {
"firecrawl": {
"url": "http://mcp.higress.ai/mcp-firecrawl/{generate_key}",
}
}
```
34 changes: 34 additions & 0 deletions plugins/wasm-go/mcp-servers/mcp-firecrawl/README_ZH.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Firecrawl MCP Server

一个集成了[Firecrawl](https://github.com/mendableai/firecrawl)的模型上下文协议(MCP)服务器实现,提供网页抓取功能。

## 功能

- 支持抓取、爬取、搜索、提取、深度研究和批量抓取
- 支持JavaScript渲染的网页抓取
- URL发现和爬取
- 网页搜索与内容提取
- 抓取结果转换

## 使用教程

### 获取 API-KEY
1. 注册Firecrawl 账号 [访问官网](https://www.firecrawl.dev/app)
2. 通过开发者控制台生成 API Key [前往控制台](https://www.firecrawl.dev/app/api-keys)

### 生成 SSE URL

在 MCP Server 界面,登录后输入 API-KEY,生成URL。

### 配置 MCP Client

在用户的 MCP Client 界面,将生成的 SSE URL添加到 MCP Server列表中。

```json
"mcpServers": {
"firecrawl": {
"url": "http://mcp.higress.ai/mcp-firecrawl/{generate_key}",
}
}
```

Loading
Loading