mmcp-server

Crates.iommcp-server
lib.rsmmcp-server
version0.1.0
created_at2025-04-12 09:10:31.092256+00
updated_at2025-04-12 09:10:31.092256+00
descriptionServer implementation for the MMCP framework.
homepagehttps://github.com/ryo33/mmcp
repositoryhttps://github.com/ryo33/mmcp
max_upload_size
id1630755
size45,254
Ryo Hirayama (ryo33)

documentation

README

MMCP Server

GitHub MIT/Apache 2.0 Crates.io docs.rs GitHub Repo stars

Server implementation for the MMCP framework.

This crate provides the core server implementation for the MMCP framework, including the MCPServer type and related functionality.

Example

use mmcp::server::{MCPServer, stdio_server_rpc};

#[tokio::main]
async fn main() {
    let server = MCPServer::new("my-server", "1.0.0").with_tools_from_inventory();

    let adapter = stdio_server_rpc();
    server.start(adapter).await.unwrap();
}

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.

Commit count: 19

cargo fmt