Skip to content

Commit 40e4064

Browse files
committed
Document Unix socket mode in README
- Add --socket option to documentation - Provide example of Unix socket usage - Clarify that multiple clients can connect
1 parent 2120f1a commit 40e4064

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,23 @@ julia --project -e 'using LLMBenchMCPServer; LLMBenchMCPServer.main()' -- MyBenc
6565

6666
Options:
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

0 commit comments

Comments
 (0)