Files
nexus/wiki/concepts/Agent.md

1.0 KiB
Raw Blame History

title, type, tags, aliases, last_updated
title type tags aliases last_updated
Agent concept
agent
llm
automation
mcp
Agent
AI Agent
智能体
自主代理
2025-12-20

Definition

Agent智能体Large Language Model + Model Context Protocol + Prompt 组成实现自动化执行。LLM 给出步骤方法和工具调用指令MCP 负责实际执行。

Key Facts

  • LLM 本身只给出"步骤方法",不会真正执行(如大模型告诉你如何发邮件,但不会自己发)
  • Agent 将 LLM 与 MCP 工具整合,实现真正的自动化
  • Agent 工作流:输入 Prompt含工具描述→ LLM 返回工具名和参数 → MCP Server 执行 → 返回结果
  • LangChain 等开发框架的核心应用场景

Connections

Sources