@solarsloae/ola-cp-travel-advice 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Cruise Travel Advice
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # Cruise Travel Advice
2
+
3
+ 提供关于邮轮旅行的实用建议,包括行前准备、最佳出发时间及目的地推荐,帮助您规划完美的邮轮之旅。
4
+
5
+ ![published with CruiseSkillBridge](https://img.shields.io/badge/published%20with-CruiseSkillBridge-6366f1)
6
+
7
+ - **类型**:MCP
8
+ - **标识**:`ola-cp-travel-advice`
9
+ - **版本**:0.1.0
10
+
11
+ ## 简介
12
+
13
+ 请在这里替换为你的技能说明。本仓库由 [CruiseSkillBridge](https://cruiseskillbridge.com)
14
+ 从模板生成,包含一个标准的 `SKILL.md`,可被各大技能市场识别与收录。
15
+
16
+ ## 许可证
17
+
18
+ 见 [LICENSE](./LICENSE)。
package/SKILL.md ADDED
@@ -0,0 +1,49 @@
1
+ ---
2
+ name: ola-cp-travel-advice
3
+ title: Cruise Travel Advice
4
+ description: 提供关于邮轮旅行的实用建议,包括行前准备、最佳出发时间及目的地推荐,帮助您规划完美的邮轮之旅。
5
+ kind: MCP
6
+ version: 0.1.0
7
+ published_with: cruiseskillbridge
8
+ ---
9
+
10
+ # Cruise Travel Advice
11
+
12
+ > 提供关于邮轮旅行的实用建议,包括行前准备、最佳出发时间及目的地推荐,帮助您规划完美的邮轮之旅。
13
+
14
+ 这是一个 **MCP** 技能,通过 [CruiseSkillBridge](https://cruiseskillbridge.com) 一键发布。
15
+
16
+ ## 能力
17
+
18
+ - 描述这个技能能做什么(请替换为你的真实内容)。
19
+ - 列出关键输入与输出。
20
+ - 说明适用场景。
21
+
22
+ ## 用法
23
+
24
+ 当需要提交分析请求时,向以下 API 发送 **POST** 请求(JSON body):
25
+
26
+ ```
27
+ https://httpbin.org/post
28
+ ```
29
+
30
+ 示例 body:
31
+
32
+ ```json
33
+ { "input": "...", "skill": "ola-cp-travel-advice" }
34
+ ```
35
+
36
+ > 发布到 CruiseSkillBridge 后,上述 URL 会自动替换为网关地址,调用将计入控制台统计。
37
+
38
+ ## 关于
39
+
40
+ 由 [CruiseSkillBridge](https://cruiseskillbridge.com) 发布 —— 全球唯一邮轮领域技能 分发 · 发布 · 洞察:
41
+ 一键发布、分发洞察、网关调用统计。
42
+
43
+ ## 已发布的 MCP Tools
44
+
45
+ 以下 Tools 已纳入 CruiseSkillBridge 发布与统计:
46
+
47
+ - **product_info** — 根据产品编号获取邮轮产品详情。
48
+
49
+ > MCP 接入经 CruiseSkillBridge 网关转发,remotes URL 已自动替换,无需手动配置。
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "@solarsloae/ola-cp-travel-advice",
3
+ "version": "0.1.0",
4
+ "description": "提供关于邮轮旅行的实用建议,包括行前准备、最佳出发时间及目的地推荐,帮助您规划完美的邮轮之旅。",
5
+ "license": "MIT",
6
+ "keywords": [
7
+ "craftwave",
8
+ "mcp"
9
+ ],
10
+ "publishConfig": {
11
+ "access": "public",
12
+ "registry": "https://registry.npmjs.org"
13
+ }
14
+ }
package/server.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
3
+ "name": "io.github.309441738/ola-cp-travel-advice",
4
+ "description": "提供关于邮轮旅行的实用建议,包括行前准备、最佳出发时间及目的地推荐,帮助您规划完美的邮轮之旅。",
5
+ "version": "0.1.0",
6
+ "remotes": [
7
+ {
8
+ "type": "streamable-http",
9
+ "url": "https://cruise-mcp.olavacations.com/api/gw/mcp/b70d3b5f-505c-4dfa-a699-587178feec21"
10
+ }
11
+ ]
12
+ }