AI Skill Hub 强烈推荐:飞托核心 是一款优质的MCP工具。AI 综合评分 8.0 分,在同类工具中表现稳健。如果你正在寻找可靠的MCP工具解决方案,这是一个值得深入了解的选择。
飞托核心 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
飞托核心 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/flytohub/flyto-core
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"----": {
"command": "npx",
"args": ["-y", "flyto-core"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 飞托核心 执行以下任务... Claude: [自动调用 飞托核心 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"____": {
"command": "npx",
"args": ["-y", "flyto-core"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
site to url) and suggests alternatives when a non-existent module is requestedfields are specified, browser.extract now returns the text content of matched elements by default (previously returned empty objects)channel: 'chrome' to browser.launch to use the system-installed Chrome instead of bundled Chromium, useful for bypassing anti-bot detection on sites that fingerprint headless browsers---
pip install flyto-core # Core engine + CLI + MCP server
pip install flyto-core[browser] # + browser automation (Playwright)
playwright install chromium # one-time browser setup
---
A hosted deployment is available on Fronteir AI.
<details> <summary><b>CLI</b> — run workflows from the terminal</summary>
```bash
flyto recipe competitor-intel --url https://competitor.com/pricing
flyto recipe scrape-to-csv --url https://news.ycombinator.com --selector ".titleline a" ```
Every recipe is traced. Every run is replayable. See all 32 recipes →
---
| Category | Count | Examples |
|---|---|---|
browser.* | 38 | launch, goto, click, extract, screenshot, fill forms, wait |
flow.* | 24 | switch, loop, branch, parallel, retry, circuit breaker, rate limit |
array.* | 15 | filter, sort, map, reduce, unique, chunk, flatten |
string.* | 11 | reverse, uppercase, split, replace, trim, slugify, template |
api.* | 11 | OpenAI, Anthropic, Gemini, Notion, Slack, Telegram |
object.* | 10 | keys, values, merge, pick, omit, get, set, flatten |
image.* | 9 | resize, convert, crop, rotate, watermark, OCR, compress |
data.* | 8 | json/xml/yaml/csv parse and generate |
file.* | 8 | read, write, copy, move, delete, exists, edit, diff |
stats.* | 8 | mean, median, percentile, correlation, standard deviation |
validate.* | 7 | email, url, json, phone, credit card |
docker.* | 6 | run, ps, logs, stop, build, inspect |
archive.* | 6 | zip create/extract, tar create/extract, gzip, gunzip |
math.* | 6 | calculate, round, ceil, floor, power, abs |
k8s.* | 5 | get_pods, apply, logs, scale, describe |
crypto.* | 4 | AES encrypt/decrypt, JWT create/verify |
network.* | 4 | ping, traceroute, whois, port scan |
pdf.* | 4 | parse, extract text, merge, compress |
aws.s3.* | 4 | upload, download, list, delete |
google.* | 4 | Gmail send/search, Calendar create/list events |
cache.* | 4 | get, set, delete, clear (memory + Redis) |
ssh.* | 3 | remote exec, SFTP upload, SFTP download |
git.* | 3 | clone, commit, diff |
sandbox.* | 3 | execute Python, Shell, JavaScript |
dns.* | 1 | DNS lookup (A, AAAA, MX, CNAME, TXT, NS) |
monitor.* | 1 | HTTP health check with SSL cert verification |
See the Full Module Catalog for every module, parameter, and description.
---
flyto run my-workflow.yaml
flyto recipe scrape-to-slack --url https://example.com --selector h1 --webhook $SLACK_URL flyto recipe github-issue --url https://example.com --owner me --repo my-app --title "Bug" --token $GITHUB_TOKEN ```
Each recipe is a YAML workflow template. Run flyto recipe <name> --help for full options. See docs/RECIPES.md for full documentation.
---
Recipes are just YAML files. Write your own:
name: price-monitor
steps:
- id: open
module: browser.launch
params: { headless: true }
- id: page
module: browser.goto
params: { url: "https://competitor.com/pricing" }
- id: prices
module: browser.evaluate
params:
script: |
JSON.stringify([...document.querySelectorAll('.price')].map(e => e.textContent))
- id: save
module: file.write
params: { path: "prices.json", content: "${prices.result}" }
- id: close
module: browser.close
flyto run price-monitor.yaml
Every run produces an execution trace and state snapshots. If step 3 fails, replay from step 3 — no re-running the whole thing.
---
from core.modules.registry import register_module
from core.modules.schema import compose, presets
@register_module(
module_id='string.reverse',
version='1.0.0',
category='string',
label='Reverse String',
description='Reverse the characters in a string',
params_schema=compose(presets.INPUT_TEXT(required=True)),
output_schema={'result': {'type': 'string', 'description': 'Reversed string'}},
)
async def string_reverse(context):
text = str(context['params']['text'])
return {'ok': True, 'data': {'result': text[::-1]}}
See Module Specification for the complete guide.
---
flyto-core 是一个功能强大的自动化引擎核心库,旨在为开发者提供高度可追溯且灵活的工作流执行能力。它不仅支持复杂的自动化任务,还通过内置的执行追踪与状态快照功能,确保每一个自动化步骤都清晰可见、可审计、可回溯,是构建智能化自动化应用的核心底座。
在 v2.19.0 版本中,我们引入了智能化的 validate_params 功能,能够通过别名映射自动纠正错误的字段名(例如将 site 自动映射为 url),并对不存在的模块提供智能建议。同时,增强后的 search_modules 支持词级与标签匹配评分,显著提升了自然语言查询的准确性。引擎层面新增了 Execution Trace(执行追踪)、Replay(回放)、Breakpoints(断点调试)以及 Evidence Snapshots(证据快照)等高级特性,配合 Data Lineage(数据血缘)追踪,让复杂工作流的调试与数据流向管理变得前所未有的简单。
您可以通过 pip 进行快速安装。基础核心引擎、CLI 工具及 MCP server 请执行 `pip install flyto-core`;若需使用浏览器自动化功能,请安装扩展包 `pip install flyto-core[browser]` 并运行 `playwright install chromium` 完成浏览器环境初始化。此外,我们也提供基于 Fronteir AI 的托管部署方案,方便用户直接调用。
flyto-core 支持多种交互方式。开发者可以通过 CLI(命令行界面)直接在终端运行预定义的工作流,也可以通过 YAML 文件定义自定义的自动化逻辑。通过 `flyto run <workflow.yaml>` 命令,您可以轻松驱动复杂的自动化任务,并享受完整的执行追踪与回放体验。
flyto-core 提供了丰富的 Recipe(配方)系统,将复杂的 Web Scraping(网页抓取)任务封装为简单的指令。例如,通过 `flyto recipe scrape-to-csv` 即可实现从指定 URL 抓取数据并导出为 CSV 格式。所有的 Recipe 运行过程均会被完整记录,确保每一次执行都是可追溯、可重现的。
项目内置了强大的模块库,涵盖 78 个类别、共计 467 个模块。其中包括用于浏览器操作的 `browser.*` 模块(如 click, extract, screenshot)、用于逻辑控制的 `flow.*` 模块(如 loop, branch, retry, circuit breaker)以及用于数据处理的 `array.*` 模块(如 filter, map, reduce)。您可以利用这些模块通过 YAML 编写高度复杂的自动化工作流,并轻松集成到 Slack 或 GitHub 等第三方平台中。
高质量的开源MCP工具,具有广泛的应用前景
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
总体来看,飞托核心 是一款质量优秀的MCP工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | flyto-core |
| 原始描述 | 开源MCP工具:The open-source execution engine for AI agents. 412 modules, MCP-native, trigger。⭐275 · Python |
| Topics | ai-agentsai-toolsautomationbrowser-automation |
| GitHub | https://github.com/flytohub/flyto-core |
| License | Apache-2.0 |
| 语言 | Python |
收录时间:2026-06-20 · 更新时间:2026-06-22 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端