File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed
Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -65,10 +65,23 @@ julia --project -e 'using LLMBenchMCPServer; LLMBenchMCPServer.main()' -- MyBenc
6565
6666Options:
6767- ` --workdir PATH ` : Set the working directory (default: current directory)
68+ - ` --socket PATH ` : Run server on Unix domain socket instead of stdio
6869- ` --no-basic-tools ` : Disable basic tools (bash, str_replace_editor)
6970- ` --verbose ` : Enable verbose output
7071- ` --help, -h ` : Show help message
7172
73+ #### Unix Domain Socket Mode
74+
75+ Run the server on a Unix socket for integration with other tools:
76+
77+ ``` bash
78+ # Start server on Unix socket
79+ julia --project -m LLMBenchMCPServer MyBenchmark --socket /tmp/mcp.sock
80+
81+ # The server will listen on the socket for MCP protocol connections
82+ # Multiple clients can connect simultaneously
83+ ```
84+
7285#### Programmatic Usage
7386
7487``` julia
You can’t perform that action at this time.
0 commit comments