This commit is contained in:
17
docs/snippets/java/mcp/mcp_server_start.md
Normal file
17
docs/snippets/java/mcp/mcp_server_start.md
Normal file
@@ -0,0 +1,17 @@
|
||||
```java title="Java"
|
||||
import java.io.IOException;
|
||||
|
||||
public class McpServer {
|
||||
public static void main(String[] args) {
|
||||
try {
|
||||
// Start MCP server using CLI
|
||||
ProcessBuilder pb = new ProcessBuilder("kreuzberg", "mcp");
|
||||
pb.inheritIO();
|
||||
Process process = pb.start();
|
||||
process.waitFor();
|
||||
} catch (IOException | InterruptedException e) {
|
||||
System.err.println("Failed to start MCP server: " + e.getMessage());
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
Reference in New Issue
Block a user