1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//! Skill MCP Server - Model Context Protocol integration
//!
//! This crate provides an MCP server that exposes installed skills as MCP tools,
//! allowing AI agents like Claude to discover and execute skill tools.
//!
//! # Features
//!
//! - **Dynamic Tool Discovery**: Automatically discovers tools from installed skills
//! - **SKILL.md Integration**: Uses SKILL.md documentation for rich tool descriptions
//! - **Manifest Support**: Works with `.skill-engine.toml` declarative manifests
//! - **Stdio Transport**: Uses stdio for direct Claude Code integration
//!
//! # Usage
//!
//! ```bash
//! # Start MCP server
//! skill serve
//!
//! # Or programmatically
//! use skill_mcp::McpServer;
//! let server = McpServer::new()?;
//! server.run().await?;
//! ```
pub use ;
use Result;
use SkillManifest;
/// Start the MCP server with default configuration
pub async
/// Start the MCP server with a manifest
pub async