Skip to content

byeblack/wasi_mcp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WASI MCP Example Project

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.

Project Structure

wasi_mcp/
├── client/         # MCP client implementation
├── server/         # MCP server implementation (compiled to WASIp2 target)

Prerequisites

  • Rust and Cargo (recommended installation via rustup)
  • WASIp2 target support: rustup target add wasm32-wasip2

Build and Run

Build the Server (WASIp2 target)

# Build WASIp2 target MCP Server
cargo build -r --target wasm32-wasip2 -p server

Run the Client

The client will use the rmcp library and wasmtime to run the server:

# Run the client using rmcp and wasmtime
cargo run -p client

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages