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
maindexapp avatar

Maindex Smart Memory Service

maindexapp/maindex
4 toolsauthHTTPregistry active
Summary

A straightforward memory layer that lets Claude keep, recall, update, and forget information across conversations. It connects via streamable HTTP and gives you four core operations: store new facts, retrieve what's been saved, modify existing entries, and delete what's no longer relevant. Useful when you need session continuity without building your own persistence layer. Maindex provides the backend infrastructure with revision history, typed relationships, and a knowledge graph you can inspect through their dashboard. Works across multiple AI clients through MCP, so the same memory follows you whether you're in Claude, Cursor, or ChatGPT. The free tier gets you started, and collections can be locked behind passphrases if you're storing sensitive context.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
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 →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
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 →
inference shell
inference shell
create and run specialised agents in minutes
build now →

Tools

Public tool metadata for what this MCP can expose to an agent.

4 tools
keepStore a new memory in Maindex (Smart). Provide the content to persist, with optional headline, tags, collections, and metadata. Each call creates a distinct memory — not idempotent. CONTENT POLICY: NEVER store passwords, API keys, secrets, credit card numbers, SSNs, government...6 params

Store a new memory in Maindex (Smart). Provide the content to persist, with optional headline, tags, collections, and metadata. Each call creates a distinct memory — not idempotent. CONTENT POLICY: NEVER store passwords, API keys, secrets, credit card numbers, SSNs, government...

Parameters* required
collectionsarray
Collection slugs or IDs to add the new memory to.
contentstring
Primary text to store; required.
headlinestring
Optional headline; Smart may generate one if omitted.
metadataobject
Opaque JSON metadata stored with the memory.
rewriteboolean
FAILSAFE — defaults to false. When false (the default), content is stored exactly as provided with zero LLM processing. Set to true ONLY if the caller explicitly opts into LLM-assisted rewriting fo...default: false
tagsarray
Optional tags for categorization.
recallSearch and retrieve memories from Maindex (Smart). Modes: relevant (default), exact, current_state, history, recent. query is required unless mode is recent. Read-only for tenant memory data.4 params

Search and retrieve memories from Maindex (Smart). Modes: relevant (default), exact, current_state, history, recent. query is required unless mode is recent. Read-only for tenant memory data.

Parameters* required
filtersobject
Optional filters applied to recall results.
limitinteger
Maximum results (default 20).default: 20
modestring
Recall mode: relevant (semantic search), exact (literal match), current_state (latest revision only), history (revision trail), recent (newest first).one of exact · relevant · current_state · history · recentdefault: relevant
querystring
Search text. Required unless mode is `recent`. Omit for a recency-sorted list (optionally filtered).
updateUpdate an existing memory in Maindex (Smart) by mem-* ID. Supply content, headline, tags, and/or metadata; at least one field is required. Each successful update creates a new revision (Expert semantics). CONTENT POLICY: NEVER store passwords, API keys, secrets, credit card nu...3 params

Update an existing memory in Maindex (Smart) by mem-* ID. Supply content, headline, tags, and/or metadata; at least one field is required. Each successful update creates a new revision (Expert semantics). CONTENT POLICY: NEVER store passwords, API keys, secrets, credit card nu...

Parameters* required
changesobject
Fields to change; at least one of content, headline, tags, or metadata is required.
rewriteboolean
FAILSAFE — defaults to false. When false (the default), content is stored exactly as provided with zero LLM processing. Set to true ONLY if the caller explicitly opts into LLM-assisted rewriting fo...default: false
target_idstring
Short ID of the memory to update (mem-*).
forgetSoft-delete a memory by mem-* ID, or with wipe_history=true permanently purge all revisions (IRREVERSIBLE). When wipe_history is true, confirm_irreversible_wipe must also be true or a confirmation prompt is returned. Soft-delete (default) is safe and reversible.3 params

Soft-delete a memory by mem-* ID, or with wipe_history=true permanently purge all revisions (IRREVERSIBLE). When wipe_history is true, confirm_irreversible_wipe must also be true or a confirmation prompt is returned. Soft-delete (default) is safe and reversible.

Parameters* required
confirm_irreversible_wipeboolean
Required confirmation when wipe_history is true. Must be explicitly set to true to authorize irreversible permanent purge of all revisions. If wipe_history is true and this field is missing or fals...default: false
target_idstring
Short ID of the memory to forget (mem-*).
wipe_historyboolean
If true, permanently purge all revisions and blank the body (IRREVERSIBLE). Otherwise soft-delete only. When true, confirm_irreversible_wipe must also be true or a confirmation prompt is returned i...default: false
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
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 →
inference shell
inference shell
create and run specialised agents in minutes
build now →
Categories
AI & LLM Tools
Registryactive
TransportHTTP
AuthRequired
UpdatedMay 3, 2026
View on GitHub

More from maindexapp

  • Maindex Expert Memory Service

Related AI & LLM Tools MCP Servers

View all →
opseraengineering avatar
Opsera

io.opsera/opsera

Opsera AI Agent MCP server providing authenticated DevOps automation over SSE
scispot-repo avatar
Mcp

io.scispot/mcp

Turn any LLM into your lab assistant: search samples, track experiments, analyze data with AI.
scorecard-ai avatar
Mcp

io.scorecard/mcp

MCP server providing access to the Scorecard API to evaluate and optimize LLM systems.
io.siteglass avatar
Mcp

io.siteglass/mcp

Agent-driven web QA: scan a site, auto-generate + run E2E test flows, read results.
stablebaseline avatar
Stable Baseline

io.stablebaseline/sb

End-to-end agent-managed company brain. Docs, diagrams, plans, Knowledge Graph. Lean & affordable.
studiomeyer-io avatar
mcp-armor

io.studiomeyer/armor

Security sidecar for MCP servers: prompt-injection scan, Ed25519 verify, tools/list drift. 10 tools.