Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions scripts/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Shell scripts

- `shell.sh` runs the application in interactive shell mode.
- `mcp_server.sh` runs an MCP server that will expose MCP tools over SSE.
- `shell.sh` runs the application in interactive shell mode.
9 changes: 0 additions & 9 deletions scripts/mcp_server.cmd

This file was deleted.

6 changes: 0 additions & 6 deletions scripts/mcp_server.sh

This file was deleted.

9 changes: 0 additions & 9 deletions scripts/shell_docker.cmd

This file was deleted.

6 changes: 0 additions & 6 deletions scripts/shell_docker.sh

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,12 @@

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import com.embabel.agent.config.annotation.EnableAgentShell;
import com.embabel.agent.config.annotation.LoggingTheme;


@SpringBootApplication
@EnableAgentShell(loggingTheme=LoggingTheme.STARWARS)
class ProjectNameApplication {
public static void main(String[] args) {
SpringApplication.run(ProjectNameApplication.class, args);
Expand Down