mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-11 22:53:00 +00:00
The OpenAPI spec adopts the lithos request, response, content part, tool, usage, and cost schemas. The completions endpoint returns the lithos `Response` JSON verbatim and SSE carries lithos `StreamEvent`s verbatim. The models and providers endpoints serve the fabro-types catalog views, and the install and model-test flows probe providers through fabro-llm. The CLI builds its catalog from the operator overlay, drives `fabro exec` through the server gateway adapter, and parses reasoning effort with the shared controls. The web app reads content parts as lithos-tagged objects. The TypeScript client is regenerated. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
38 lines
1 KiB
TOML
38 lines
1 KiB
TOML
[package]
|
|
name = "fabro-mcp-server"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
publish = false
|
|
license.workspace = true
|
|
description = "Fabro MCP stdio server"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
fabro-api = { path = "../../foundation/fabro-api" }
|
|
fabro-client = { path = "../../foundation/fabro-client" }
|
|
fabro-manifest = { path = "../../components/fabro-manifest" }
|
|
fabro-config = { path = "../../foundation/fabro-config" }
|
|
fabro-server = { path = "../fabro-server" }
|
|
fabro-tool = { path = "../../components/fabro-tool" }
|
|
fabro-types = { path = "../../foundation/fabro-types" }
|
|
fabro-util = { path = "../../foundation/fabro-util" }
|
|
futures.workspace = true
|
|
rmcp = { workspace = true, features = ["server", "macros", "schemars", "transport-io"] }
|
|
schemars = "1.2.1"
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
strum.workspace = true
|
|
tokio.workspace = true
|
|
toml.workspace = true
|
|
tracing.workspace = true
|
|
|
|
[dev-dependencies]
|
|
httpmock = "0.8"
|
|
tempfile = "3"
|