tiny update

This commit is contained in:
2026-05-22 00:25:10 +02:00
parent 05019f46ac
commit 99d183e535
+2 -2
View File
@@ -11,7 +11,7 @@ use serde_json::{Value, json};
type ApiResponse = (Status, RawJson<String>); type ApiResponse = (Status, RawJson<String>);
const JSONRPC_VERSION: &str = "2.0"; const JSONRPC_VERSION: &str = "2.0";
const MCP_PROTOCOL_VERSION: &str = "2024-11-05"; const MCP_PROTOCOL_VERSION: &str = "2025-11-25";
#[derive(Deserialize)] #[derive(Deserialize)]
pub struct JsonRpcRequest { pub struct JsonRpcRequest {
@@ -138,7 +138,7 @@ pub async fn route(
}, },
}, },
server_info: ServerInfo { server_info: ServerInfo {
name: "folyo-bridge", name: env!("CARGO_PKG_NAME"),
version: env!("CARGO_PKG_VERSION"), version: env!("CARGO_PKG_VERSION"),
}, },
}, },