We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/secxena/mcp-reticle'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
[package]
name = "reticle-core"
version = "0.1.0"
description = "Core library for Reticle - protocol types, token counting, and session recording"
authors = ["Reticle Team"]
license = "MIT"
repository = "https://github.com/labterminal/mcp-reticle"
homepage = "https://github.com/labterminal/mcp-reticle"
keywords = ["mcp", "json-rpc", "protocol", "proxy"]
categories = ["development-tools::debugging", "development-tools"]
edition = "2021"
rust-version = "1.70"
[dependencies]
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
bincode = "1.3"
# Async runtime
tokio = { version = "1", features = ["sync", "time", "net", "io-util", "rt"] }
async-trait = "0.1"
# WebSocket client for CLI-to-GUI bridge
tokio-tungstenite = { version = "0.21", optional = true }
futures-util = { version = "0.3", optional = true }
# Error handling
thiserror = "1.0"
# Logging
tracing = "0.1"
# Database - embedded key-value store
sled = "0.34"
# Utilities
dirs = "5.0"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.11", features = ["v4"] }
rand = "0.8"
[features]
default = []
websocket = ["tokio-tungstenite", "futures-util"]
[dev-dependencies]
tokio = { version = "1", features = ["full", "test-util"] }
tempfile = "3"