通过 Rube MCP 自动执行 Alpha Vantage 数据查询与相关流程编排。
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "alpha-vantage-automation" 技能: 1. 下载 https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/master/composio-skills/alpha-vantage-automation/SKILL.md 2. 保存为 ~/.claude/skills/alpha-vantage-automation/SKILL.md 3. 装好后重载技能,告诉我可以用了
先搜索可用工具及当前 schema,然后使用 Alpha Vantage 相关工具获取 AAPL 的最近 30 个交易日日线数据,并整理为包含日期、开盘、收盘、成交量的表格。
返回整理好的股票日线数据表,可直接用于分析或导出。
先搜索工具确认参数 schema,再批量查询 USD/EUR、USD/JPY 和 GBP/USD 的最新汇率,并输出统一 JSON 结果。
返回多个货币对的最新汇率,字段格式统一,便于后续自动化处理。
先搜索当前可用工具和 schema,然后获取 TSLA 的 RSI 和 MACD 指标数据,汇总最近 14 天结果,并标注每项指标含义。
输出近 14 天技术指标汇总,并附带简要说明,便于快速判断趋势。
Automate Alpha Vantage operations through Composio's Alpha Vantage toolkit via Rube MCP.
Toolkit docs: composio.dev/toolkits/alpha_vantage
RUBE_MANAGE_CONNECTIONS with toolkit alpha_vantageRUBE_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 alpha_vantageAlways discover available tools before executing workflows:
RUBE_SEARCH_TOOLS
queries: [{use_case: "Alpha Vantage 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 Alpha Vantage task"}]
session: {id: "existing_session_id"}
RUBE_MANAGE_CONNECTIONS
toolkits: ["alpha_vantage"]
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 Alpha Vantage-specific use case |
| Connect | RUBE_MANAGE_CONNECTIONS with toolkit alpha_vantage |
| 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
通过 Rube MCP 自动化 Agiled 中的客户、项目与业务流程操作。
通过 Rube MCP 自动化调用 Wolfram Alpha API,完成计算、查询与结果集成。