
DeepLucid3D UCPF Server

Overview
基本能力
产品定位
DeepLucid3D UCPF Server 是一个高级认知处理框架的实现,旨在通过结构化认知工具帮助用户进行问题解决和创造性思考。
核心功能
- 认知状态评估:识别当前认知状态(黑暗惯性、激情或接近清醒),以提高问题解决过程中的自我意识。
- 知识维度映射:在三个维度上映射知识:意识(已知与未知)、内容(已知与未知)、可访问性(可知与不可知)。
- 递归自我提问:挑战初始假设并识别潜在的认知偏差。
- 创造性视角生成:产生新颖的观点和隐喻思维,以激发新的解决方案。
- 问题分解:将复杂问题分解为可管理的组件,并在整个系统意识下重新整合。
- 可选状态管理:在会话之间保持上下文以进行持续分析。
适用场景
- 复杂问题解决
- 创造性思维激发
- 认知偏差识别
- 知识管理和分类
工具列表
- analyze_problem:通过完整的UCPF框架处理问题陈述。
- creative_exploration:为主题生成新颖的观点和连接。
- manage_state:控制UCPF处理的状态管理。
常见问题解答
- 如何启用状态管理?使用
manage_state
工具并设置action
为enable
。 - 如何访问框架文档?使用
access_mcp_resource
并指定相应的URI。
使用教程
使用依赖
- Node.js (v14或更高版本)
- npm (v6或更高版本)
- 兼容模型上下文协议的环境
安装教程
-
克隆仓库
bash git clone https://github.com/yourusername/DeepLucid3D-UCPF-Server.git cd DeepLucid3D-UCPF-Server
-
安装依赖
bash npm install
-
构建项目
bash npm run build
-
配置MCP设置 将服务器添加到MCP设置文件中,通常位于:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Linux:
~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
添加以下配置:
json
{
"mcpServers": {
"ucpf": {
"command": "node",
"args": ["path/to/DeepLucid3D-MCP/build/index.js"],
"env": {},
"disabled": false,
"autoApprove": []
}
}
}
- 重启MCP兼容应用程序(如Claude、VSCode with Cline等)
调试方式
-
启用状态管理
<use_mcp_tool> <server_name>ucpf</server_name> <tool_name>manage_state</tool_name> <arguments> { "action": "enable" } </arguments> </use_mcp_tool>
-
分析问题
<use_mcp_tool> <server_name>ucpf</server_name> <tool_name>analyze_problem</tool_name> <arguments> { "problem": "Your problem statement here", "session_id": "optional-session-id", "enable_state": false, "detailed": false } </arguments> </use_mcp_tool>
-
探索创造性视角
<use_mcp_tool> <server_name>ucpf</server_name> <tool_name>creative_exploration</tool_name> <arguments> { "topic": "Your topic here", "constraints": ["Optional constraint 1", "Optional constraint 2"], "perspective_count": 3, "include_metaphors": true } </arguments> </use_mcp_tool>