sqlrite-mcp 0.5.1

Model Context Protocol (MCP) server for SQLRite. Exposes a SQLRite database to LLM agents over stdio.
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "sqlrite-mcp"
version = "0.5.1"
authors = ["Joao Henrique Machado Silva <joaoh82@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Model Context Protocol (MCP) server for SQLRite. Exposes a SQLRite database to LLM agents over stdio."
readme = "README.md"
keywords = [
    "sqlrite",
    "mcp",
    "llm",
    "ai",
    "anthropic",
]
categories = [
    "database",
    "command-line-utilities",
]
license = "MIT"
repository = "https://github.com/joaoh82/rust_sqlite"

[features]
ask = ["sqlrite/ask"]
default = ["ask"]

[[bin]]
name = "sqlrite-mcp"
path = "src/main.rs"

[[test]]
name = "protocol"
path = "tests/protocol.rs"

[dependencies.clap]
version = "4"
features = ["derive"]

[dependencies.libc]
version = "0.2"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.sqlrite]
version = "0.5.1"
default-features = false
package = "sqlrite-engine"

[dev-dependencies]