fraiseql-server 2.2.0

HTTP server for FraiseQL v2 GraphQL engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! MCP (Model Context Protocol) server integration.
//!
//! Exposes FraiseQL queries and mutations as MCP tools, enabling AI/LLM clients
//! (e.g., Claude Desktop) to interact with the database through the standard
//! Model Context Protocol.

pub mod executor;
pub mod handler;
pub mod tools;

/// MCP configuration type re-exported from the core schema for use in this crate.
pub use fraiseql_core::schema::McpConfig;