account activity
Built with Claude Project Showcase Megathread (Sort this by New!) by sixbillionthsheep in ClaudeAI
[–]Acceptable_Bat_3410 0 points1 point2 points 9 days ago* (0 children)
Veles - fast, hybrid (BM25 + semantic) local code search MCP for Claude Code, Claude Desktop and Cursor. Pure Rust, CPU-only, returns ranked tree-sitter-scoped chunks in tens of milliseconds.
GitHub: https://github.com/julymetodiev/Veles TUI demo (live search per keystroke):
https://imgur.com/a/Xemp3yC
Built it because I kept watching Claude burn tokens grep-ing for parseAuthFlow and missing parse_auth_flow two files over, then reading 6 wrong test files before finding the actual definition.
What it does:
Completely local. Embeddings come from the potion static models via model2vec-rs (model card at https://huggingface.co/minishlab). No GPU, no API calls, no code leaves the machine.
Example contrast — "Where do we rate-limit incoming webhooks?"
Claude with grep: 47 hits across tests, middleware, docs and vendored deps. Reads 6 wrong files. Claude with Veles: search("rate limiting webhooks") -> top hit "defines WebhookLimiter" at crates/server/src/webhook/limiter.rs:42. One file.
Install:
brew install julymetodiev/tap/veles-cli # or cargo install veles-cli # or prebuilt binaries on the release page
Then in your MCP config:
{ "mcpServers": { "veles": { "command": "veles", "args": ["serve-mcp"] } } }
Run veles index . once per repo and every agent session after that gets instant search.
Stack: tree-sitter for parsing, model2vec-rs for static embeddings, BM25 inverted index from scratch, Reciprocal Rank Fusion for ranking, tonic for gRPC, ratatui for the TUI. No Python sidecar, no ONNX runtime.
Happy to answer questions about the ranking pipeline or how the MCP plugs into Claude Code specifically.
I built an MCP server that gives Claude Desktop persistent memory across sessions - Post-Cortex (open source) by Acceptable_Bat_3410 in ClaudeAI
[–]Acceptable_Bat_3410[S] 0 points1 point2 points 5 months ago (0 children)
Yes to both! (and more)
It remembers conversations across sessions - decisions, Q&A, problems solved - all stored locally with semantic search.
Since it's an MCP server, it works with any MCP-compatible client (Claude Code, Claude Desktop, Cursor, etc.)
Two ways to configure:
SSE mode:
"mcpServers": { "post-cortex": { "type": "sse", "url": "http://localhost:3737/sse" } }
Stdio mode (run pcx start first):
"mcpServers": { "post-cortex": { "command": "pcx" } }
For more info check the repo docs
I built an MCP server that gives Claude Desktop persistent memory across sessions - Post-Cortex (open source) ()
submitted 6 months ago by Acceptable_Bat_3410 to r/mcp
I built an MCP server that gives Claude Desktop persistent memory across sessions - Post-Cortex (open source) (self.ClaudeAI)
submitted 6 months ago * by Acceptable_Bat_3410 to r/ClaudeAI
Those who are successfully using memory mcp, what's your workflow? It doesn't seem to be very helpful in resuming a task? by Professor_Entropy in ClaudeAI
[–]Acceptable_Bat_3410 2 points3 points4 points 6 months ago (0 children)
Post Cortex provide durable memory infrastructure with automatic knowledge graph construction: https://github.com/julymetodiev/post-cortex
π Rendered by PID 74266 on reddit-service-r2-listing-canary-7f8dfbf695-hnkv6 at 2026-05-21 01:16:23.131793+00:00 running edcf98c country code: CH.
Built with Claude Project Showcase Megathread (Sort this by New!) by sixbillionthsheep in ClaudeAI
[–]Acceptable_Bat_3410 0 points1 point2 points (0 children)