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.
---
高质量的开源MCP工具,具有广泛的应用前景
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
总体来看,飞托核心 是一款质量优秀的MCP工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | flyto-core |
| Topics | ai-agentsai-toolsautomationbrowser-automation |
| GitHub | https://github.com/flytohub/flyto-core |
| License | Apache-2.0 |
| 语言 | Python |
收录时间:2026-06-20 · 更新时间:2026-06-20 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端