CCM
/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

Claude Code Marketplaces

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
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
gunning4it avatar

Epitome

gunning4it/epitome
8authHTTPregistry active
Summary

This gives Claude persistent memory across conversations through three MCP tools: recall, memorize, and review. Instead of repeating your preferences, tech stack, or personal details every chat, you connect once via streamable HTTP and every agent shares the same knowledge graph stored in PostgreSQL. Each user gets schema-level isolation, not just row-level security. You can self-host with Docker Compose or use the hosted service at epitome.fyi. The memory layer tracks confidence scores and source attribution, so facts earn trust through reinforcement. Useful if you're building agentic workflows where context needs to persist beyond a single session or across multiple AI tools.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

Epitome

Epitome

One memory layer, every AI agent.

The portable identity layer that gives every AI agent a shared, persistent memory of you.
Open source. Self-hostable. Yours.

MIT License GitHub Stars Tests

Website · Quickstart · Connect an Agent · Docs · Contributing


The Problem

Every AI conversation starts from zero. You repeat yourself to every agent — your name, your preferences, your allergies, your tech stack. Chat history is siloed per app. There's no portable memory layer.

Epitome fixes this. One database that every AI agent shares, so they all remember you.


Quickstart

Hosted (fastest)

  1. Sign up at epitome.fyi
  2. Go to Settings → API Keys and copy your MCP URL
  3. Connect an AI agent — done

Self-Hosted

git clone https://github.com/gunning4it/epitome.git
cd epitome
cp .env.example .env    # edit with your credentials
docker compose up -d

Open localhost:5173 and sign in with Google or GitHub OAuth.


Connect an AI Agent

Get your API key from Settings → API Keys in the dashboard (hosted or self-hosted).

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "epitome": {
      "url": "https://epitome.fyi/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Claude Code

claude mcp add --transport http --header "Authorization: Bearer YOUR_API_KEY" epitome https://epitome.fyi/mcp

Self-Hosted

For self-hosted, replace https://epitome.fyi with http://localhost:3000.

Epitome exposes 3 MCP tools — recall, memorize, and review. See the full tool reference.


Who This Is For

  • AI developers building agents that need persistent user memory
  • Power users who want every AI to remember them across platforms
  • Self-hosters who want full data ownership — no cloud required

Use Cases

  • Your meal-tracking agent remembers your allergies
  • Your coding assistant knows your stack, your patterns, your team
  • Your calendar agent knows your family, your priorities, your routines
  • Every new AI tool you try already knows you on day one

Why Epitome?

Chat HistoryVector DBNote AppsEpitome
Portable identity✓
Multi-agent shared memory✓
Knowledge graph✓
Consent & audit per agent✓
Per-user schema isolation✓
Structured + semantic datapartial✓
Self-hostable✓✓

The Five Layers

#LayerDescription
01Personal DatabaseStructured tables, vector semantic memory, and key-value storage. Your data lives in PostgreSQL — queryable, exportable, yours.
02Portable IdentityA structured profile any AI agent reads instantly. Name, preferences, relationships — zero cold start, every conversation.
03Memory QualityConfidence scoring, source attribution, and lifecycle management. Memories earn trust through reinforcement, not blind faith.
04Knowledge GraphEntities with typed, weighted edges. People, places, concepts — connected in a graph that grows with every interaction.
05Consent & AuditPer-table permissions and an append-only activity log. You control exactly what each agent can see and do.

Architecture

AI Agent ──→ MCP (Streamable HTTP) ──→ Hono API ──→ PostgreSQL
                                         │
                                    per-user schema
                                      isolation

Each user gets their own PostgreSQL schema (user_{id}) — not row-level security, full schema-level isolation. Cross-schema access is impossible at the SQL level.

See EPITOME_TECH_SPEC.md for the full architecture.


Security & Privacy

  • You own your data — self-host or use the hosted service
  • Per-user PostgreSQL schema isolation — not row-level security, full schema separation
  • Per-agent consent rules — you control what each agent can read and write
  • Append-only audit log — every access is recorded
  • GDPR-ready — export or delete all your data at any time

Tech Stack

ComponentTechnology
RuntimeNode.js 22 LTS
APIHono
DatabasePostgreSQL 17 + pgvector
MCP@modelcontextprotocol/sdk
FrontendReact 19 + Tailwind CSS 4 + shadcn/ui
ValidationZod
TestingVitest

Documentation

  • Quick Start — Get running in minutes
  • JavaScript SDK — Build with @epitomefyi/sdk
  • npm Package — Install and version history
  • AI SDK Tools — searchMemory, saveMemory, getUserContext for tool-calling
  • API Reference — REST endpoint documentation
  • MCP Tools — All 3 MCP tools explained
  • Architecture — Full technical specification
  • Data Model — Every table, column, and constraint
  • Self-Hosting Guide — Docker Compose deployment
  • Security — Isolation, consent, and audit

Contributing

Contributions are welcome! See CONTRIBUTING.md for guidelines.

git clone https://github.com/gunning4it/epitome.git
cd epitome && cp .env.example .env
docker compose up -d

Then open a PR — we're happy to help with your first contribution.


License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Categories
AI & LLM Tools
Registryactive
TransportHTTP
AuthRequired
UpdatedFeb 19, 2026
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
marsmanleo avatar
MarsNMe

marsmanleo/marsnme

Agent-agnostic memory backend that preserves continuity between humans and AI over time.
6
sralli avatar
Agendum

sralli/agendum

AI agent memory: task tracking, scoped work packages, decisions, and cross-session continuity
6
vornicx avatar
Midas

vornicx/midas

Local-first, source-traceable agent memory — no LLM at ingest, fully offline
6
bahfahh avatar
Noteit Mcp

bahfahh/noteit-mcp

MCP server for AI agent profiles and smart notes. 60+ coding prompt packs with expert personas.
5
mnemopay avatar
Sdk

com.mnemopay/sdk

Memory + wallet for AI agents. Real payment rails, Agent FICO 300-850, Merkle audit, identity.
5
blackfoil avatar
Claude Token Saver Mcp

blackfoil/claude-token-saver-mcp

MCP server that offloads routine coding tasks to local LLM (Ollama) to save Claude API tokens
4