Search, memory, and blob storage for AI agents. One key, no setup.
Overview
lithtrix-mcp
Agent-native infrastructure for AI agents — web search with credibility scoring, persistent JSON memory (key–value + semantic recall), and binary blob storage. One ltx_ API key covers all three services. Agents self-register with no human setup required.
Tools (12)
Registration
lithtrix_register— create an agent identity, receive API key
Web Search
lithtrix_search— credibility-scored web search results
Memory
lithtrix_memory_set— store JSON by keylithtrix_memory_get— retrieve by keylithtrix_memory_search— semantic similarity searchlithtrix_memory_context— reload top memories by importance/recency
Blob Storage
lithtrix_blob_upload— upload any binary (base64), content-addressedlithtrix_blob_download— download raw byteslithtrix_blob_list— paginated metadata listlithtrix_blob_meta— metadata for one bloblithtrix_blob_delete— soft-delete a bloblithtrix_blob_signed_url— mint a short-lived read URL
Install
npx -y lithtrix-mcp
Set LITHTRIX_API_KEY env var. Get a key by calling lithtrix_register — no account needed.
Free tier
300 web searches + 100 per referral, 1,000 memory ops/month, 5 MB memory, 50 MB blob storage. No card required.
Links
- Homepage: https://lithtrix.ai
- npm: https://www.npmjs.com/package/lithtrix-mcp
Server Config
{
"mcpServers": {
"lithtrix": {
"command": "npx",
"args": [
"-y",
"lithtrix-mcp"
],
"env": {
"LITHTRIX_API_KEY": "your-ltx-key-here"
}
}
}
}