Developers

Memchats for developers

Integrate your conversation memory into Claude Desktop, VS Code, Cursor, Claude Code, or any tool that supports MCP and REST.

Quick start

  1. Create an account at memchats.com (requires Plus plan or higher)
  2. Go to Settings → API Keys and generate your key
  3. Pick your integration: MCP (for AI assistants) or REST API (for your code)

MCP Server

The Memchats MCP server lets you use your conversation memory directly from Claude Desktop, VS Code Copilot, Cursor and Claude Code.

Claude Desktop

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "memchats": {
      "command": "npx",
      "args": ["-y", "@memchats/mcp-server"],
      "env": {
        "MEMCHATS_API_KEY": "<YOUR_API_KEY>"
      }
    }
  }
}

Claude Code (CLI)

claude mcp add memchats npx @memchats/mcp-server \
  --env MEMCHATS_API_KEY=<YOUR_API_KEY>

VS Code (GitHub Copilot)

// .vscode/mcp.json
{
  "servers": {
    "memchats": {
      "command": "npx",
      "args": ["-y", "@memchats/mcp-server"],
      "env": { "MEMCHATS_API_KEY": "<YOUR_API_KEY>" }
    }
  }
}

REST API

Base URL: https://app.memchats.com/api/v1. Authentication: Authorization: Bearer <YOUR_API_KEY>

Endpoints

MethodEndpointDescription
GET/meAccount and plan info
GET/contactsList of contacts
GET/contacts/:id/memoryFull memory of a contact
GET/conversations?contact_id=Conversations for a contact
GET/conversations/:id/messagesMessages in a conversation
GET/search?q=Full-text search across messages
POST/advisors/:slug/askAsk an advisor (Plus and above)

curl example

curl https://app.memchats.com/api/v1/contacts \
  -H "Authorization: Bearer <YOUR_API_KEY>"

# Search
curl "https://app.memchats.com/api/v1/search?q=meeting" \
  -H "Authorization: Bearer <YOUR_API_KEY>"

Limits per plan

PlanAPI KeysRate limitask_advisor
Free---
Plus (9 €/mes con pago anual)160 rpm✓ todos
Pro (19 €/mes con pago anual)3300 rpm✓ todos
Empresa (29 €/asiento/mes)ilimitadassin límite✓ todos

Ready to integrate?

Get my API key
Developers · Memchats