File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
src/main/kotlin/com/embabel/coding Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -8,4 +8,6 @@ embabel-agent-api/src/main/resources/mcp/**
8
8
9
9
.idea /workspace.xml
10
10
11
- ** /* .log
11
+ ** /* .log
12
+
13
+ mcp.env
Original file line number Diff line number Diff line change 15
15
*/
16
16
package com.embabel.coding
17
17
18
+ import com.embabel.agent.config.annotation.EnableAgentShell
18
19
import com.embabel.agent.config.annotation.EnableAgents
19
20
import com.embabel.agent.config.annotation.LoggingThemes
21
+ import com.embabel.agent.config.annotation.McpServers
20
22
import org.springframework.boot.autoconfigure.SpringBootApplication
21
23
import org.springframework.boot.context.properties.ConfigurationPropertiesScan
22
24
import org.springframework.boot.runApplication
23
25
24
26
@SpringBootApplication
25
27
@ConfigurationPropertiesScan
26
- @EnableAgents(loggingTheme = LoggingThemes .SEVERANCE )
28
+ @EnableAgents(
29
+ loggingTheme = LoggingThemes .SEVERANCE ,
30
+ mcpServers = [McpServers .DOCKER , McpServers .DOCKER_DESKTOP ],
31
+ )
32
+ @EnableAgentShell
27
33
class CodingAgentApplication
28
34
29
35
fun main (args : Array <String >) {
You can’t perform that action at this time.
0 commit comments