diff --git a/Cargo.lock b/Cargo.lock index 9da574b..fefa896 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4026,7 +4026,7 @@ dependencies = [ "tempfile", "tokio", "tokio-tungstenite 0.28.0", - "toml 1.0.3+spec-1.1.0", + "toml 1.0.6+spec-1.1.0", "uuid", "walkdir", ] @@ -4371,9 +4371,9 @@ dependencies = [ [[package]] name = "toml" -version = "1.0.3+spec-1.1.0" +version = "1.0.6+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7614eaf19ad818347db24addfa201729cf2a9b6fdfd9eb0ab870fcacc606c0c" +checksum = "399b1124a3c9e16766831c6bba21e50192572cdd98706ea114f9502509686ffc" dependencies = [ "indexmap", "serde_core", @@ -4704,9 +4704,9 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" [[package]] name = "uuid" -version = "1.21.0" +version = "1.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b672338555252d43fd2240c714dc444b8c6fb0a5c5335e65a07bba7742735ddb" +checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37" dependencies = [ "getrandom 0.4.1", "js-sys", diff --git a/server/.mcp.json b/server/.mcp.json new file mode 100644 index 0000000..a36a88a --- /dev/null +++ b/server/.mcp.json @@ -0,0 +1,8 @@ +{ + "mcpServers": { + "story-kit": { + "type": "http", + "url": "http://localhost:3001/mcp" + } + } +} diff --git a/server/Cargo.toml b/server/Cargo.toml index 98247d6..d07175e 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -32,7 +32,7 @@ matrix-sdk = { workspace = true } pulldown-cmark = { workspace = true } # Force bundled SQLite so static musl builds don't need a system libsqlite3 -libsqlite3-sys = { version = "0.36.0", features = ["bundled"] } +libsqlite3-sys = { version = "0.35.0", features = ["bundled"] } [dev-dependencies] tempfile = { workspace = true }