pmcp-server 0.2.3

PMCP SDK developer tools MCP server - protocol testing, scaffolding, schema export, and documentation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Guided workflow prompt templates.
//!
//! Prompts for common MCP development scenarios:
//! quickstart, create-mcp-server, add-tool, diagnose, setup-auth,
//! debug-protocol-error, and migrate.

pub mod workflows;

pub use workflows::{
    AddToolPrompt, CreateMcpServerPrompt, DebugProtocolErrorPrompt, DiagnosePrompt, MigratePrompt,
    QuickstartPrompt, SetupAuthPrompt,
};