[package]
edition = "2024"
rust-version = "1.90"
name = "lash-plugin-mcp"
version = "0.1.0-alpha.40"
authors = ["Samuel Galanakis"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MCP (Model Context Protocol) plugin for the lash agent runtime."
homepage = "https://samgalanakis.github.io/lash/"
documentation = "https://samgalanakis.github.io/lash/"
readme = "README.md"
keywords = [
"lash",
"agent",
"mcp",
"plugin",
"llm",
]
categories = [
"asynchronous",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/SamGalanakis/lash"
[lib]
name = "lash_plugin_mcp"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.http]
version = "1"
[dependencies.lash-core]
version = "=0.1.0-alpha.40"
[dependencies.rmcp]
version = "1.6"
features = [
"client",
"transport-child-process",
"transport-streamable-http-client-reqwest",
"client-side-sse",
"reqwest",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"sync",
"process",
"rt",
"macros",
"time",
]
[dev-dependencies.lash-core]
version = "=0.1.0-alpha.40"
features = ["testing"]
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"rt-multi-thread",
]