agentic-workflow-mcp 0.1.0

MCP server for AgenticWorkflow — universal LLM access to workflow orchestration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! AgenticWorkflow MCP Server
//!
//! Provides 124 MCP tools across 24 inventions for universal workflow orchestration.

pub mod config;
pub mod protocol;
pub mod tools;
pub mod transport;
pub mod types;
pub mod prompts;
pub mod resources;
pub mod session;

pub use config::ServerConfig;
pub use protocol::ProtocolHandler;
pub use transport::StdioTransport;