| Crates.io | mcp-stdio-rust |
| lib.rs | mcp-stdio-rust |
| version | 0.5.0 |
| created_at | 2025-10-07 14:27:55.736588+00 |
| updated_at | 2025-12-07 00:02:49.324545+00 |
| description | Hello World stdio MCP |
| homepage | |
| repository | https://github.com/xbill9/gemini-cli-codeassist |
| max_upload_size | |
| id | 1871719 |
| size | 77,149 |
A Rust application that interacts via standard input/output (stdio) using the MCP protocol.
This project implements a command-line application in Rust that communicates through standard input and standard output. It's designed to process incoming commands or data from stdin and produce responses or results to stdout, adhering to a defined protocol.
Ensure you have the Rust toolchain installed:
To build the project:
cargo build --release
To run the application, you can pipe input to it and capture its output:
echo "your_input_here" | target/release/mcp-stdio-rust
Or, for interactive use:
target/release/mcp-stdio-rust
Then type your input and press Enter. The application will print its response to stdout.
This impliments a minimially viable MCP stdio server in Rust.