mcp-skill-framework 0.1.1

A small framework for building MCP (Model Context Protocol) servers as a uniform layer of self-contained tools ("skills"): a typed skill contract, declarative input validation, capability probes, family metadata, and a ready-made dispatcher.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.75"
name = "mcp-skill-framework"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = 'A small framework for building MCP (Model Context Protocol) servers as a uniform layer of self-contained tools ("skills"): a typed skill contract, declarative input validation, capability probes, family metadata, and a ready-made dispatcher.'
homepage = "https://github.com/elyerinfox/mcp-skill-framework-rs"
readme = "README.md"
keywords = [
    "mcp",
    "rmcp",
    "llm",
    "agent",
    "tools",
]
categories = [
    "api-bindings",
    "development-tools",
    "asynchronous",
]
license = "MIT"
repository = "https://github.com/elyerinfox/mcp-skill-framework-rs"

[lib]
name = "mcp_skill_framework"
path = "src/lib.rs"

[[example]]
name = "duration"
path = "examples/duration.rs"

[[example]]
name = "ffmpeg"
path = "examples/ffmpeg.rs"

[[example]]
name = "server"
path = "examples/server.rs"

[dependencies.futures]
version = "0.3"

[dependencies.regex]
version = "1"

[dependencies.rmcp]
version = "1.7"
features = [
    "server",
    "macros",
    "schemars",
]

[dependencies.schemars]
version = "1"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dev-dependencies.rmcp]
version = "1.7"
features = [
    "server",
    "macros",
    "schemars",
    "transport-io",
]

[dev-dependencies.serde]
version = "1"
features = ["derive"]

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
]