stand-in 0.0.4

A stand-in for your MCP server boilerplate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Parameters for the `prompts/get` JSON-RPC method.

use serde::{Deserialize, Serialize};

/// Parameters for a `prompts/get` request.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct GetPromptParams {
    /// Name of the prompt to retrieve.
    pub name: String,

    /// Arguments to pass to the prompt function.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub arguments: Option<serde_json::Value>,
}