File tree Expand file tree Collapse file tree 3 files changed +50
-0
lines changed Expand file tree Collapse file tree 3 files changed +50
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ layout : default
3
+ title : MCP Debugger
4
+ nav_order : 2
5
+ parent : MCP
6
+ permalink : /a2a/a2a-debugger
7
+ ---
8
+
9
+ ## AutoDev A2A debugger
10
+
11
+ create a file end with ` .mcp.json ` in your project root directory, and add the following content:
12
+
13
+ ``` json
14
+ {
15
+ "a2aServers" : {
16
+ "remote-example" : {
17
+ "url" : " http://localhost:9999"
18
+ }
19
+ }
20
+ }
21
+ ```
22
+
23
+ Then, click show preview in File toolbar, you can see:
24
+
25
+ - A2A Server/Tool LIST
26
+ - A2A Model Configured
27
+ - A2A Chat input box
Original file line number Diff line number Diff line change
1
+ ---
2
+ layout : default
3
+ title : A2A Protocol
4
+ nav_order : 7
5
+ has_children : true
6
+ permalink : /a2a
7
+ ---
8
+
9
+ 在 issue [ #435 ] ( https://github.com/unit-mesh/auto-dev/issues/435 ) , 我们创建了 AutoDev 的 A2A 功能。
10
+
11
+ # A2A
12
+
13
+ > 全称为Agent to Agent Protocol,是由Google推出的一个开放协议,旨在实现不同AI智能体之间的互操作性,
14
+ > 促进它们在动态多智能体环境下的有效通信和协作。简单来说,A2A协议就像是为AI智能体之间提供了一套标准化的“语言”,
15
+ > 使得不同厂商、不同技术框架的AI智能体能够像人与人交流一样,互相理解、互相协作,共同完成任务
Original file line number Diff line number Diff line change @@ -177,6 +177,14 @@ const sidebars = {
177
177
'mcp/mcp-server' ,
178
178
] ,
179
179
} ,
180
+ {
181
+ type : 'category' ,
182
+ label : 'A2A' ,
183
+ items : [
184
+ 'a2a/index' ,
185
+ 'a2a/a2a-debugger' ,
186
+ ] ,
187
+ } ,
180
188
{
181
189
type : 'category' ,
182
190
label : 'AI Agent Language' ,
You can’t perform that action at this time.
0 commit comments