[package]
edition = "2021"
name = "agentic-memory-mcp"
version = "0.1.6"
authors = ["Omoshola Owolabi"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MCP server for AgenticMemory - universal LLM access to persistent graph memory"
homepage = "https://agentralabs.tech"
readme = "README.md"
keywords = [
"mcp",
"llm",
"memory",
"agent",
"ai",
]
categories = [
"development-tools",
"memory-management",
]
license = "MIT"
repository = "https://github.com/agentralabs/agentic-memory"
[features]
all-transports = [
"stdio",
"sse",
]
default = ["stdio"]
sse = [
"axum",
"tower",
"tower-http",
]
stdio = []
[lib]
name = "agentic_memory_mcp"
path = "src/lib.rs"
[[bin]]
name = "agentic-memory-mcp"
path = "src/main.rs"
[[example]]
name = "custom_client"
path = "examples/custom_client.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "phase1_types"
path = "tests/phase1_types.rs"
[[test]]
name = "phase2_protocol"
path = "tests/phase2_protocol.rs"
[[test]]
name = "phase3_prompts"
path = "tests/phase3_prompts.rs"
[[test]]
name = "phase3_resources"
path = "tests/phase3_resources.rs"
[[test]]
name = "phase3_tools"
path = "tests/phase3_tools.rs"
[[test]]
name = "phase4_session"
path = "tests/phase4_session.rs"
[[test]]
name = "phase4_streaming"
path = "tests/phase4_streaming.rs"
[[test]]
name = "phase5_integration"
path = "tests/phase5_integration.rs"
[dependencies.agentic-memory]
version = "0.2.6"
[dependencies.anyhow]
version = "1.0"
[dependencies.axum]
version = "0.7"
optional = true
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.4"
features = ["derive"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.35"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dependencies.tower]
version = "0.4"
optional = true
[dependencies.tower-http]
version = "0.5"
features = ["cors"]
optional = true
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.uuid]
version = "1.6"
features = ["v4"]
[dev-dependencies.tempfile]
version = "3.9"
[dev-dependencies.tokio-test]
version = "0.4"