feat(wiki): ingest 'MCP在Cursor中的集成与应用详解.md' following CLAUDE.md schema

This commit is contained in:
2026-04-14 19:34:03 +08:00
parent 1a5b8867d5
commit 8f5268db77
9 changed files with 129 additions and 21 deletions

View File

@@ -0,0 +1,17 @@
---
title: "Agent模式"
type: concept
tags: [interaction-mode, ai-agent, cursor]
last_updated: 2026-04-14
---
## Aliases
- Agent mode
- 代理模式
## Summary
Agent 模式是 [[Cursor]] 中 Composer 模块的一种交互状态。与需要用户手动复制执行命令的 Normal 模式不同Agent 模式能够让 AI 模型自动运行内置的工具命令并处理返回结果,极大地提升了自动化任务的执行效率。配合 `enable yolo mode` 可以跳过二次确认(但具有一定风险)。
## Key Connections
- [[Agent模式]] → enables → [[SequentialThinking]]
- [[Agent模式]] 存在于 [[Cursor]] 的 Composer 中

16
wiki/concepts/SSE.md Normal file
View File

@@ -0,0 +1,16 @@
---
title: "SSE"
type: concept
tags: [protocol, integration]
last_updated: 2026-04-14
---
## Aliases
- Server-Sent Events
- SSE连接
## Summary
SSE (Server-Sent Events) 是一种服务器向客户端单向推送实时事件的技术。在 [[MCP]] 的生态中SSE 是除命令行 (Command) 之外的另一种服务端接入方式,允许客户端实时监听服务端发出的数据和状态更新。
## Key Connections
- [[SSE]] 是接入 [[MCP]] 的两种主要方式之一

View File

@@ -0,0 +1,18 @@
---
title: "SequentialThinking"
type: concept
tags: [reasoning, ai-capability]
last_updated: 2026-04-14
---
## Aliases
- 序列化思考
- Sequential Thinking
- 步骤化推理
## Summary
Sequential Thinking 是一种优化大语言模型LLM逻辑推理过程的机制或工具。它通过将复杂的任务分步拆解并允许与外部服务例如通过 [[MCP]] 集成的新闻源)互相调用,从而显著提升 AI 在面对复杂环境时的思考深度和响应准确率。
## Key Connections
- [[SequentialThinking]] ← depends_on ← [[Agent模式]]
- [[SequentialThinking]] 配合 [[MCP]] 使用提升能力