通过 Rube MCP 自动化执行 Stormglass IO 相关天气数据查询与集成任务
这是一个开源的 prompt-only 技能说明,主要用于引导调用 Rube MCP/Composio 的 Stormglass IO 工具,本身未显示本地执行代码或直接收集密钥。整体风险偏低,但因其依赖远程 MCP 服务与第三方连接授权,网络外发和账号连接方面仍需留意。
材料声明“无 API keys”,但实际要求通过 `RUBE_MANAGE_CONNECTIONS` 建立 `stormglass_io` 的 ACTIVE 连接,并提示用户完成返回的认证链接;这意味着第三方连接令牌/授权很可能由 Rube/Composio 侧代管。未见技能本身索取本地环境变量,但仍存在账号授权被第三方平台使用的常规风险。
README 明确要求添加远程 MCP 服务器 `https://rube.app/mcp`,并通过 Composio 的 Stormglass IO 工具执行操作;工具搜索、连接管理、执行请求及相关业务数据都可能发送到该远程服务。该外发与技能声明功能相关,属于远程工具的常规风险,未见额外不明端点证据。
从提供材料看,该技能本身是 prompt-only 文档型技能,不包含可审计的本地脚本、安装命令或要求在本机启动进程的说明。虽然其会引导调用 `RUBE_MULTI_EXECUTE_TOOL`/`RUBE_REMOTE_WORKBENCH` 等远程工具能力,但未见直接授予本地代码执行权限的事实。
材料未显示其读取/写入本地文件系统,但其设计目标是通过已授权的 Stormglass IO 连接执行操作,因此会访问对应第三方账户中的数据或资源。当前未见超出声明用途的本地数据权限申请,但用户应将其视为对外部业务数据具有操作能力的技能。
来源为 GitHub 上公开仓库,且系统标注为 open-source,社区采用度高(约 64.7k stars),这些都是明显的降风险因素。需注意该仓库看起来是技能集合而非此单一技能的独立源码仓,且许可证与维护状态未明确,因此仍建议在接入前复核上游 MCP/Composio 侧文档与实现。
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "stormglass-io-automation" 技能: 1. 下载 https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/master/composio-skills/stormglass-io-automation/SKILL.md 2. 保存为 ~/.claude/skills/stormglass-io-automation/SKILL.md 3. 装好后重载技能,告诉我可以用了
Automate Stormglass IO operations through Composio's Stormglass IO toolkit via Rube MCP.
Toolkit docs: composio.dev/toolkits/stormglass_io
RUBE_MANAGE_CONNECTIONS with toolkit stormglass_ioRUBE_SEARCH_TOOLS first to get current tool schemasGet Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
RUBE_SEARCH_TOOLS respondsRUBE_MANAGE_CONNECTIONS with toolkit stormglass_ioAlways discover available tools before executing workflows:
RUBE_SEARCH_TOOLS
queries: [{use_case: "Stormglass IO operations", known_fields: ""}]
session: {generate_id: true}
This returns available tool slugs, input schemas, recommended execution plans, and known pitfalls.
RUBE_SEARCH_TOOLS
queries: [{use_case: "your specific Stormglass IO task"}]
session: {id: "existing_session_id"}
RUBE_MANAGE_CONNECTIONS
toolkits: ["stormglass_io"]
session_id: "your_session_id"
RUBE_MULTI_EXECUTE_TOOL
tools: [{
tool_slug: "TOOL_SLUG_FROM_SEARCH",
arguments: {/* schema-compliant args from search results */}
}]
memory: {}
session_id: "your_session_id"
RUBE_SEARCH_TOOLSRUBE_MANAGE_CONNECTIONS shows ACTIVE status before executing toolsmemory in RUBE_MULTI_EXECUTE_TOOL calls, even if empty ({})| Operation | Approach |
|---|---|
| Find tools | RUBE_SEARCH_TOOLS with Stormglass IO-specific use case |
| Connect | RUBE_MANAGE_CONNECTIONS with toolkit stormglass_io |
| Execute | RUBE_MULTI_EXECUTE_TOOL with discovered tool slugs |
| Bulk ops | RUBE_REMOTE_WORKBENCH with run_composio_tool() |
| Full schema | RUBE_GET_TOOL_SCHEMAS for tools with schemaRef |
Powered by Composio