poet 0.7.0

Static site generator with optional MCP server and LLM SEO optimizations
Documentation
use actix_web::HttpResponse;
use actix_web::Result;
use actix_web::body::BoxBody;
use async_trait::async_trait;
use mime::Mime;

use crate::mcp::MCP_PROTOCOL_VERSION;
use crate::mcp::mcp_responder::McpResponder;
use crate::mcp::mcp_responder_context::McpResponderContext;

#[derive(Clone)]
pub struct RespondToGet {}

#[async_trait(?Send)]
impl McpResponder for RespondToGet {
    fn accepts() -> Vec<Mime> {
        vec![mime::TEXT_EVENT_STREAM]
    }

    async fn respond_to(
        self,
        McpResponderContext { req, .. }: McpResponderContext,
    ) -> Result<HttpResponse<BoxBody>> {
        self.assert_protocol_version_header(&req, MCP_PROTOCOL_VERSION)?;

        Ok(HttpResponse::Ok().body("hello, world, get".to_string()))
    }
}