This is an example project demonstrating MCP (Message Channel Protocol) client and server implementation using the rmcp library. The project showcases how to compile the server with WASIp2 target and run it through the client using wasmtime.
wasi_mcp/
├── client/ # MCP client implementation
├── server/ # MCP server implementation (compiled to WASIp2 target)
- Rust and Cargo (recommended installation via rustup)
- WASIp2 target support:
rustup target add wasm32-wasip2
# Build WASIp2 target MCP Server
cargo build -r --target wasm32-wasip2 -p server
The client will use the rmcp library and wasmtime to run the server:
# Run the client using rmcp and wasmtime
cargo run -p client