Auto-sync

This commit is contained in:
2026-04-15 07:37:53 +08:00
parent 1bce532898
commit f3569a835b
484 changed files with 0 additions and 18663 deletions

View File

@@ -1,43 +0,0 @@
---
id: mcp
title: "MCP"
type: concept
tags: [AI, protocol, tool-integration]
sources:
- "[[LLM Terms Framework]]"
last_updated: 2025-12-20
---
## Definition
MCPModel Context Protocol模型上下文协议是一种标准化接口用于连接大模型与外部数据和工具。
## Purpose
解决LLM无法访问实时数据和外部工具的问题
- LLM给出执行步骤
- 实际执行需要配合MCP
- 实现智能体Agent功能
## Architecture
- **Client**运行在AI应用端
- **Server**:运行在外部服务或本地
## Use Cases
- 文件系统访问
- API调用
- 数据库查询
- 代码执行
## Connection to Agent
Agent = LLM + MCP
- LLM负责理解和规划
- MCP负责执行具体操作
## Connections
- [[LLM]] ← uses ← [[MCP]]
- [[Agent]] ← combines ← [[LLM]] + [[MCP]]
- [[MCP]] ← enables ← [[工具调用]]