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/yun520-1/mark-heartflow-skill
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"------": {
"command": "npx",
"args": ["-y", "mark-heartflow-skill"]
}
}
}
# 配置文件位置
# 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", "mark-heartflow-skill"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
<p align="center"> <img src="https://img.shields.io/badge/version-5.2.1-blue?style=flat-square" alt="version" /> <img src="https://img.shields.io/github/release/yun520-1/mark-heartflow-skill?style=flat-square" alt="GitHub release" /> <img src="https://img.shields.io/github/last-commit/yun520-1/mark-heartflow-skill?style=flat-square" alt="last commit" /> <img src="https://img.shields.io/badge/license-MIT-green?style=flat-square" alt="license" /> <img src="https://img.shields.io/badge/node-%3E%3D18-brightgreen?style=flat-square&logo=node.js" alt="Node.js" /> <img src="https://img.shields.io/badge/modules-60-important?style=flat-square" alt="60 modules" /> </p>
HeartFlow is not an LLM enhancer. It is a cognitive state encoder. It takes raw text → encodes it into structured cognition (emotion, psychology, philosophy, desire, judgment, decision) → feeds the LLM with data it couldn't produce alone. The LLM makes the final decision. HeartFlow makes that decision 27% more accurate.
English · 中文版
---
```bash
npm install
```bash
npm install
心虫管道输出(7阶段,~7ms):
heartLogic: 类型=决策类, 疼痛=经济焦虑
intent: 意图=职业, 语气=焦虑
psychology: 情绪(PAD: -0.3/0.6/0.2), 认知负荷=0.4, 目标冲突=[稳定vs自由]
judgment: 2条路径评估:
路径A "深入分析" → 评分6.0/10 (可行0.7, 风险0.3)
路径B "立即行动" → 评分4.7/10 (可行0.4, 风险0.7)
后果预测: 短期=财务压力, 中期=职业转型, 长期=自由
RL匹配: 上回类似场景→"分析"是对的→置信度0.8
decision: 策略=加速(高U+高D+中A), 优先级=先分析再行动
→ LLM拿到这些结构化数据后做最终决策
node mcp/mcp-server-http.js --port 8099 &
HeartFlow runs as an MCP server for AI agent integration:
```bash
const { HeartFlow } = require('./path/to/heartflow-skill/src/core/heartflow.js');
const hf = new HeartFlow({ rootPath: './path/to/heartflow-skill' });
hf.start();
// Full cognitive pipeline
const result = await hf.think("I want to quit my job and start a company");
// result.cognition contains structured: emotion, psychology, philosophy, desire, judgment, decision
// result.conclusion is the 3-section output for the LLM
// Or just get the structured data
const { cognition } = result;
console.log('Emotion:', cognition.emotion); // PAD vector
console.log('Psychology:', cognition.psychology); // 10 dimensions
console.log('Judgment:', cognition.judgment); // multi-path + consequences
console.log('Decision:', cognition.decision); // strategy + confidence
---
高质量的开源MCP工具,具有创新性的认知引擎设计
该工具未明确声明开源协议,商业使用前请联系原作者确认授权范围,避免侵权风险。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
总体来看,心流认知引擎 是一款质量优秀的MCP工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | mark-heartflow-skill |
| Topics | aicognitive-enginejavascript |
| GitHub | https://github.com/yun520-1/mark-heartflow-skill |
| 语言 | JavaScript |
收录时间:2026-06-27 · 更新时间:2026-06-27 · License:未公布 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端