poet 0.7.0

Static site generator with optional MCP server and LLM SEO optimizations
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde::Deserialize;
use serde::Serialize;

use crate::mcp::resource_content::ResourceContent;

#[derive(Deserialize, Serialize)]
pub struct ResourceContentParts {
    pub parts: Vec<ResourceContent>,
    pub title: String,
    pub uri: String,
}