mirror of
https://github.com/ModernRelay/omnigraph.git
synced 2026-06-30 02:49:39 +02:00
Folds in v0.7.2 (release #301) + RFC-013 Phase 7 (graph lineage in __manifest, internal schema v3→v4 migration #299; WriteTxn #298; recovery convergence #296) under the MCP branch. Conflict resolutions (2 files): - crates/omnigraph-server/Cargo.toml: take main's 0.7.2 path-dep constraints; keep our omnigraph-mcp dep (bumped to 0.7.2). - docs/releases/v0.8.0.md (add/add): both branches drafted v0.8.0 notes for the same next minor — combined them. v0.8.0 now documents BOTH the MCP surface (ours) and main's __manifest lineage fold + the breaking internal-schema-v4 upgrade-order requirement (kept prominent under Upgrade notes). Corrected our 'no breaking changes / on-disk format unchanged' line, which the v4 migration makes false. Coherence: omnigraph-mcp [package] + Cargo.lock bumped 0.7.1→0.7.2; openapi.json auto-merged to info.version 0.7.2 (no API-surface drift from the incoming engine-internal commits). Verification deferred to CI (no local rebuild).
28 lines
1.3 KiB
TOML
28 lines
1.3 KiB
TOML
[package]
|
|
name = "omnigraph-mcp"
|
|
version = "0.7.2"
|
|
edition = "2024"
|
|
description = "MCP (Model Context Protocol) Streamable-HTTP transport and backend seam for Omnigraph. Contains the rmcp dependency and defines the McpBackend trait the server implements; names no omnigraph engine/server type, so the dependency edge is server → mcp."
|
|
license = "MIT"
|
|
repository = "https://github.com/ModernRelay/omnigraph"
|
|
homepage = "https://github.com/ModernRelay/omnigraph"
|
|
documentation = "https://docs.rs/omnigraph-mcp"
|
|
|
|
[dependencies]
|
|
# rmcp is contained to this crate. `server` + `transport-streamable-http-server`
|
|
# give the StreamableHttpService tower wiring. Do NOT enable rmcp's `local`
|
|
# feature — it cfg's the tower wiring out (transport mod is gated on
|
|
# `not(feature = "local")`).
|
|
rmcp = { version = "1.7", default-features = false, features = ["server", "transport-streamable-http-server"] }
|
|
axum = { workspace = true }
|
|
http = "1"
|
|
# `limit` adds RequestBodyLimitLayer; features are additive with the workspace's
|
|
# `trace`. rmcp reads the body directly (no axum extractor), so axum's
|
|
# DefaultBodyLimit does not bound /mcp — this layer is the real bound.
|
|
tower-http = { workspace = true, features = ["limit"] }
|
|
tokio = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tower = { workspace = true }
|