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

EvolutionDB Long-Term Memory

alptekin/evolutiondb
5authSTDIOregistry active
Summary

Gives Claude persistent memory backed by EvolutionDB, a single-process database that combines SQL, vector search, and temporal queries. Instead of rigging up separate stores for chat history, embeddings, and checkpoints, you get first-class DDL like CREATE MEMORY STORE and CREATE CHECKPOINT STORE with native LangGraph and LangChain adapters. Runs locally via Docker on ports 5433 (Postgres wire) and 9967 (native), speaks stdio to Claude Desktop, and includes push notifications so you can skip polling loops. Reach for this when you want agents to remember context across sessions without stitching together MongoDB and Pinecone or writing your own checkpoint serializer.

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 →

EvolutionDB

EvolutionDB is a small SQL database engine written in C. It runs as a single process. It speaks the PostgreSQL wire protocol, so clients like psql, DBeaver, and JDBC drivers can connect to it without any changes.

The engine also has features that AI agent systems often need. It can store vectors and search them by similarity. It can store JSON documents. It can keep time-versioned history. It can push change events to clients so they do not have to poll.

This repository holds the engine only. The AI agent, the memory server, the connectors, and the language SDKs live in a separate repository called evolutionagent.

What you get

EvolutionDB is one binary. You do not need to run several services. From that one binary you get:

  • A relational SQL engine with tables, indexes, constraints, joins, subqueries, transactions, and MVCC.
  • Vector storage and similarity search backed by an HNSW index.
  • JSON document storage with a filter syntax.
  • Time-travel queries that read data as of an earlier transaction.
  • A push system. A client can listen for changes and receive a message when the data changes.
  • The PostgreSQL wire protocol on port 5433. It also has a native text protocol called EVO on port 9967.
  • AES-256 encryption at rest for on-premise deployments.

Quick start with Docker

docker compose up -d        # starts the server on PG 5433 and EVO 9967

Then connect with any PostgreSQL client:

psql -h 127.0.0.1 -p 5433 -U admin -d testdb

The default user is admin. You set the password with the EVOSQL_PASSWORD environment variable. If you leave it unset, the server prints a random password once at startup.

Build from source

You need GCC, Bison, Flex, and liblz4. For TLS you also need libssl-dev.

make              # build the engine (src/backend/evosql) and the server (src/server/evosql-server)
make server TLS=1 # build the server with TLS support
make tools        # build the diagnostic tools
make generate     # regenerate the parser after editing the grammar
make clean        # remove build output

Special SQL objects

EvolutionDB adds a few first-class objects on top of normal SQL. They hold the kinds of state that agent frameworks use.

CREATE MEMORY STORE agent_memories WITH (embedding_dim = 1536);  -- key-value plus vector search
CREATE CHECKPOINT STORE agent_checkpoints;                       -- saved agent state
CREATE MESSAGE LOG agent_chat;                                   -- append-only chat history
CREATE DOCUMENT STORE agent_docs;                                -- JSON documents with filters
CREATE GRAPH STORE agent_kg;                                     -- time-versioned edges
CREATE ENTITY STORE agent_entities;                              -- entities with mention counts

You also get everything a relational engine gives you. That includes prepared statements, COPY, replication, and row-level security.

Repository layout

The layout follows the PostgreSQL source tree.

src/include/    engine headers (everything compiles with -I src/include)
src/backend/    the engine, grouped by subsystem:
                storage, access, commands, executor, utils, parser
src/server/     the dual-protocol server (PostgreSQL wire and EVO text)
src/bin/tools/  diagnostic tools
test/           Python tests that run over the wire protocol
infra/          docker, compose, and helm files
packaging/      installers for macOS, Linux, Windows, and the AUR
docs/           the reference manual site and its source

Using it from an application

Any PostgreSQL client works over port 5433. The agent memory features have their own client libraries. The C SDK, the language bindings for Python, Node, Go, Rust, Java, .NET, Ruby, and Swift, the MCP server, and the connectors all live in the evolutionagent repository.

Testing

Start a server first. Then run the Python tests. They connect over the wire protocol and need no extra setup. The default credentials are admin and admin, and the default database is testdb.

docker compose up -d
python test/test_where.py
python test/test_aggregates.py
python test/test_evo_protocol.py

Documentation

The reference manual is the site under docs/. The architecture notes are in the project Wiki.

Background

EvolutionDB began about 18 years ago as a personal project in C. The goal was to learn how a database works on the inside. That meant writing the parser, the storage layer, the indexes, and the execution layer by hand. The project was then archived on a DVD and left untouched for more than a decade.

Work resumed in early 2026 with AI-assisted development. The engine grew into a PostgreSQL-compatible core. After that it gained the features that agent systems need, such as vector search, JSON storage, time-versioned history, and push notifications.

License

See COPYRIGHT.md.

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

EVOSQL_HOSTdefault: 127.0.0.1

Hostname where EvolutionDB is reachable on the PostgreSQL wire (port 5433).

EVOSQL_PORTdefault: 5433

EvolutionDB's PostgreSQL-protocol port.

EVOSQL_USERdefault: admin

Database user.

EVOSQL_PASSWORDsecret

Database password.

EVOSQL_DATABASEdefault: testdb

Database name to use.

MCP_USER_ID*default: default_user

Sticky namespace identifier for every memory Claude writes through this server. Server-side override — the LLM cannot fragment your namespace by inventing other IDs.

MCP_STORE_PREFIXdefault: claude_desktop

Prefix for the auto-created MEMORY STORE / ENTITY STORE catalog objects.

Categories
AI & LLM Tools
Registryactive
Packagemcp-server-evolutiondb
TransportSTDIO
AuthRequired
UpdatedJun 10, 2026
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
SkillFM LLM Cost Optimizer

io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage

LLM cost optimizer for OpenAI, Anthropic, token usage, BYOK, and SkillFM Beacon audits.
Llm Orchestration Agent

io.github.mikerawsonnz/llm-orchestration-agent

Run a prompt through a LangChain (system + human) chain over Gemini on Vertex AI; optional LangSmith
Authenticated Llm Agent

io.github.mikerawsonnz/authenticated-llm-agent

JWT-gated LLM gateway: authenticate (bcrypt/JWT), then run a LangChain-on-Vertex Gemini completion.
Copilot Memory MCP

labforgedev/copilot-memory-mcp

Persistent semantic memory for AI agents using local ChromaDB vector search. No cloud required.
1
Agent Prompt Injection Firewall Mcp

csoai-org/agent-prompt-injection-firewall-mcp

The WAF for agents. Pattern-based + heuristic firewall scans prompts, RAG documents, tool argume...
Authenticated Multi Llm Agent

io.github.mikerawsonnz/authenticated-multi-llm-agent

Google-OAuth-gated LLM gateway: verify a Google ID token, then run a Gemini (Vertex AI) completion f