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
- Create an account at memchats.com (requires Plus plan or higher)
- Go to Settings → API Keys and generate your key
- 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
| Method | Endpoint | Description |
|---|---|---|
GET | /me | Account and plan info |
GET | /contacts | List of contacts |
GET | /contacts/:id/memory | Full memory of a contact |
GET | /conversations?contact_id= | Conversations for a contact |
GET | /conversations/:id/messages | Messages in a conversation |
GET | /search?q= | Full-text search across messages |
POST | /advisors/:slug/ask | Ask 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
| Plan | API Keys | Rate limit | ask_advisor |
|---|---|---|---|
| Free | - | - | - |
| Plus (9 €/mes con pago anual) | 1 | 60 rpm | ✓ todos |
| Pro (19 €/mes con pago anual) | 3 | 300 rpm | ✓ todos |
| Empresa (29 €/asiento/mes) | ilimitadas | sin límite | ✓ todos |
Ready to integrate?
Get my API key