CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

memex

kioie/memex
1STDIOregistry active
Summary

Gives Cursor, Claude Desktop, and other MCP clients a SQLite-backed memory that survives across chats. You tell it once to remember your coding preferences, stack decisions, or project conventions, then open a new conversation later and the agent recalls them without re-prompting. Ten tools cover the basics: remember to store a fact, retrieve_context to pull relevant memories sized for your token budget, recall for keyword search, update_memory to revise entries with history preserved. Everything stays in a local database file under ~/.memex. Useful when you're tired of re-explaining your testing style or branch naming rules every session. Optional hybrid search mode helps with paraphrased queries. Built in Go, runs via stdio, requires no cloud account or API keys.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

memex — long-term memory for AI coding agents

Stop re-explaining your stack every chat. Long-term memory for AI coding agents — stored on your machine.

memex gives Cursor, Claude Desktop, and other MCP clients a memory that survives across chats. Save preferences, decisions, and facts once; the agent finds them again later. No cloud account, no API keys, no vector database to run.

Unit Tests Integration Tests Go Reference

Current release: v0.6.0 · Requires: Go 1.26+


When to use memex

Use memex if you:

  • Code with Cursor, Claude Desktop, or any MCP client
  • Want preferences and project facts to persist across chats
  • Need memory on your machine — no vendor account or API keys
  • Are building or running an agent that should recall past context

Good fits — ask memex to remember things like:

SituationExample
Coding preferences"Prefers Go, table-driven tests, no Python for services"
Project decisions"This repo uses SQLite; don't suggest Postgres"
Conventions"Branch names: feature/…, commits: conventional commits"
Agent commitments"Will add integration tests before merging"
Session startAgent loads your prefs instead of re-interviewing you

memex is not for:

  • Passwords, API keys, or secrets
  • Full chat transcripts or log archival
  • Team-wide cloud memory synced across machines (local-first, per device)
  • Non-MCP apps (memex speaks MCP over stdio)

Agents: if the user repeats themselves across sessions, or asks you to "remember" something durable — use memex. See docs/FOR-AGENTS.md.


The outcome

Without memexWith memex
Every new chat starts from zeroAgent recalls your stack, style, and past decisions
You repeat the same preferencesYou say it once; memex stores it locally
Memory lives in a vendor's cloudMemory lives in ~/.memex/memex.db on your disk
Extra services and API keysgo install + one MCP config line

Try it in 2 minutes

go install github.com/kioie/memex/cmd/memex@latest
memex doctor    # confirm local store is ready

Add to your MCP client (e.g. Cursor):

{
  "mcpServers": {
    "memex": {
      "command": "memex",
      "args": ["serve"]
    }
  }
}

In chat:

Remember that I prefer table-driven tests and Go over Python.

Open a new chat:

What are my testing preferences?

Full walkthrough: docs/GETTING-STARTED.md

Try in browser (no Cursor): npx @modelcontextprotocol/inspector memex serve

Smithery: kioie/memex (local Docker via MCPB — no hosting) · Registry metadata in server.json


How it works

You or the agent          memex (local)              Later sessions
      │                        │                           │
      │  remember("prefers Go")│                           │
      │ ──────────────────────►│  saved to SQLite          │
      │                        │                           │
      │                        │  recall("testing prefs")  │
      │                        │ ◄─────────────────────────│
      │                        │ ─────────────────────────►│ relevant facts
  1. Save — remember stores a short fact (deduplicated per user)
  2. Find — recall or retrieve_context searches when the agent needs context
  3. Update — update_memory revises a fact; old versions stay in the audit trail

Data never leaves your machine unless you copy the database file.


What you get

FeatureWhat it means for you
Local storageSQLite file under ~/.memex — you own it
Smart searchKeyword search built in; optional MEMEX_HYBRID=1 for paraphrase-friendly matching
Context limitsretrieve_context returns only what fits your token budget
Safe updatesRevising a fact keeps history; nothing is silently overwritten
Agent + user factsTrack who said what (source: user / agent / system)
Multi-project scopingSeparate by user, agent, session, or metadata tags
Built-in guidanceMCP prompts teach agents when and how to use memory
Health checkmemex doctor shows path, counts, and config

Documentation

DocFor
Getting startedFirst-time setup in Cursor
For AI agentsWhen agents should read/write memory
ExamplesMCP configs and scoping recipes
All docsIndex

Agents: fetch MCP prompts memory_guide, session_start, and remember_fact from the connected server.


Tools (10)

Everyday use — you usually only need the first three:

ToolPlain English
rememberSave a fact
retrieve_contextFind relevant facts, sized for the model context window
recallSearch by keywords (query required)
list_memoriesBrowse stored facts without searching
update_memoryChange an existing fact (keeps history)
get_memoryLook up one fact by ID
forgetRemove one fact (soft delete)
delete_memoriesRemove several facts
delete_all_memoriesWipe a user's memories (confirm=true)
memory_historySee how a fact changed over time

Settings

VariablePurpose
MEMEX_DIRWhere to store data (default ~/.memex)
MEMEX_USER_IDYour memory namespace (default default)
MEMEX_AGENT_IDSeparate memories per agent
MEMEX_RUN_IDTag memories to a session or run
MEMEX_HYBRID=1Turn on extra local matching for paraphrases
MEMEX_VERBOSE=1Log database path while debugging

Why memex?

Hosted memory products typically need API keys, cloud embeddings, and network calls on every recall. memex is the opposite: a small MCP server on your machine, writing distilled facts that agents choose to store — no extraction pipeline, no vendor lock-in.

memexTypical hosted memory
Setupgo install + MCP configAPI keys, SDK, often Docker
DataYour diskVendor cloud
OfflineYesUsually no
CostFree (local compute only)Usage-based

Development

git clone https://github.com/kioie/memex.git && cd memex
make test              # fast unit tests
make test-integration  # MCP stdio roundtrip
memex doctor

See CONTRIBUTING.md · CHANGELOG.md · SECURITY.md


License

MIT — see LICENSE.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

MEMEX_DIR

Data directory (default ~/.memex in native install; use /data in Docker)

MEMEX_USER_ID

Default user scope for memories

MEMEX_HYBRID

Set to 1 to enable local vector retrieval fusion

Categories
DatabasesAI & LLM Tools
Registryactive
Packageghcr.io/kioie/memex:0.6.0
TransportSTDIO
UpdatedMay 25, 2026
View on GitHub

Related Databases MCP Servers

View all →
Postgres

ai.waystation/postgres

Connect to your PostgreSQL database to query data and schemas.
54
Read Only Local Postgres Mcp Server

hovecapital/read-only-local-postgres-mcp-server

MCP server for read-only PostgreSQL database queries in Claude Desktop
2
Database Mcp

cocaxcode/database-mcp

MCP server for database connectivity. Multi-DB (PostgreSQL, MySQL, SQLite), 19 tools.
1
Mcp Mysql

io.github.infoinlet-marketplace/mcp-mysql

Read-only MySQL/MariaDB for AI agents — query, list/describe tables, health. SQL-guarded.
Database Admin

io.github.cybeleri/database-admin

Database admin MCP: schema inspection, query optimization for PostgreSQL and MySQL
Postgres Secured (Aegis Zero-Trust)

io.github.yash-0620/postgres-mcp-secured

Enterprise PostgreSQL MCP secured by Aegis Zero-Trust to block unauthorized SQL injections.