poet 0.7.0

Static site generator with optional MCP server and LLM SEO optimizations
Documentation
1
2
3
4
5
6
7
8
use serde_json::Value;

use crate::mcp::jsonrpc::response::success::tool_call_result::ToolCallResult;

pub enum ToolRegistryCallResult {
    NotFound,
    Success(ToolCallResult<Value>),
}