vibe-workspace 0.0.5

Extremely lightweight CLI for managing multiple git repositories and workspace configurations
1
2
3
4
5
6
7
8
9
10
11
//! MCP (Model Context Protocol) server integration for vibe-workspace
//!
//! This module provides MCP server capabilities, exposing vibe-workspace
//! commands as tools that can be invoked by AI models.

pub mod handlers;
pub mod registry;
pub mod server;
pub mod types;

pub use server::VibeMCPServer;