Install
openclaw skills install fore-vip-productAI Agents Skills - Query product catalog from fore.vip platform via MCP Server. Browse AI products, activities, events, and more. Compatible with OpenClaw, Hub, and MCP protocols.
openclaw skills install fore-vip-productQuery and browse the AI product catalog (KL collection) from the fore.vip platform via MCP Server. This AI Agent Skill is designed for OpenClaw, Hub, and other MCP-compatible platforms.
AI Agents | Skills | MCP Server | OpenClaw | Product | 活动 (Activities) | Hub | AI 智能体 | fore.vip | 产品目录
Use this AI Agent Skill when you want to:
The fore.vip MCP Server provides two endpoints for AI Agents and Skills integration:
https://api.fore.vip/mcp/*https://api.fore.vip/tools/*| Endpoint | Method | Usage | Recommended |
|---|---|---|---|
/mcp/query_kl | POST | Query products (direct) | ⭐⭐⭐⭐⭐ |
/mcp/create_activity | POST | Create activities (direct) | ⭐⭐⭐⭐⭐ |
/tools/list | GET | List tools (MCP standard) | ⭐⭐⭐ |
/tools/call | POST | Call tool (MCP standard) | ⭐⭐⭐ |
curl -X POST https://api.fore.vip/mcp/query_kl \
-H "Content-Type: application/json" \
-d '{
"tag": "推荐",
"limit": 10
}'
Response:
{
"success": true,
"total": 10,
"limit": 10,
"skip": 0,
"hasMore": false,
"data": [
{
"id": "670703627ae7081fd93d09f1",
"name": "AI 文案助手",
"content": "请你扮演一个优质 AI 文案助手...",
"pic": [],
"tag": "推荐",
"hot": 21307866,
"update_date": 1234567890
}
]
}
curl -X POST https://api.fore.vip/tools/call \
-H "Content-Type: application/json" \
-d '{
"name": "query_kl",
"arguments": {
"tag": "推荐",
"limit": 10
}
}'
Response:
{
"jsonrpc": "2.0",
"result": {
"content": [{
"type": "text",
"text": "{\"success\":true,\"total\":10,...}"
}],
"isError": false
}
}
| Parameter | Type | Default | Description | Example |
|---|---|---|---|---|
tag | string | - | Product tag to filter (AI, 活动,游戏,etc.) | "推荐" |
limit | number | 20 | Max results (1-100) | 50 |
skip | number | 0 | Skip for pagination | 20 |
Collect search parameters from user
Validate parameters
Call MCP Server (OpenClaw & Hub Compatible)
const response = await fetch('https://api.fore.vip/mcp/query_kl', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
tag: '推荐',
limit: 10,
skip: 0
})
});
const result = await response.json();
Handle response
result.success === true: Display product listresult.success === false: Show error messageDisplay products (SEO-Optimized Format)
https://fore.vip/p?id={id}{
"tag": "推荐",
"limit": 10,
"skip": 0
}
{
"success": true,
"total": 10,
"limit": 10,
"skip": 0,
"hasMore": false,
"data": [
{
"id": "670703627ae7081fd93d09f1",
"name": "AI 文案助手",
"content": "请你扮演一个优质 AI 文案助手...",
"pic": [],
"tag": "推荐",
"hot": 21307866,
"update_date": 1234567890,
"url": "https://fore.vip/p?id=670703627ae7081fd93d09f1"
}
]
}
Each product can be accessed via the following URL pattern:
https://fore.vip/p?id={product_id}
Example:
670703627ae7081fd93d09f1https://fore.vip/p?id=670703627ae7081fd93d09f1When displaying products, include the clickable URL:
- **[产品名]** (热度:xxx) - AI Agents Skills
- 简介:产品描述内容...
- 🏷️ 标签:tag
- 🔗 链接:https://fore.vip/p?id=产品 ID
- 🌐 平台:fore.vip | OpenClaw | Hub | MCP
Common errors for AI Agents and Skills:
Cloud Object URL Trigger:
this.getHttpInfo().body to get the bodyJSON.parse() to convert string to object// Cloud Object Code (mcp/index.obj.js)
async query_kl() {
const httpInfo = this.getHttpInfo();
const pm = JSON.parse(httpInfo.body); // String → Object
const { tag, limit = 20, skip = 0 } = pm;
// ... business logic
}
skip for pagination (skip = (page-1) * limit)https://fore.vip/p?id={id}Primary Keywords:
Secondary Keywords:
Long-tail Keywords:
Version: 0.0.3 (SEO Optimized)
Last Updated: 2026-03-22
Compatible With: OpenClaw, Hub, MCP Server, AI Agents
Platform: fore.vip