skill-mcp 0.3.0

MCP (Model Context Protocol) server implementation for Skill - AI agent integration
Documentation

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

# Start MCP server
skill serve

# Or programmatically
use skill_mcp::McpServer;
let server = McpServer::new()?;
server.run().await?;