Connect Memberberry to all your AI tools in minutes using the Model Context Protocol
You'll need this to authenticate with Memberberry
Add shared memory to Claude Desktop conversations
In Claude Desktop:

Fill in the connector details:
Name:
MemberberryRemote MCP server URL:
https://memberberry.radicalgeek.co.uk/mcp
💡Claude Desktop uses OAuth for secure authentication. You can either use Dynamic Client Registration (automatic) or manually create an OAuth app.
Click "Add" and Claude Desktop will:
Optional: You can also manually create an OAuth app in the dashboard and enter the Client ID and Client Secret in Advanced settings.

OAuth provides automatic token refresh and more granular permissions.
You should see Memberberry listed in your active connectors.

Start a conversation and Memberberry will automatically store and recall important information!
Enable persistent memory in your AI-powered code editor
Go to Settings → Features → Model Context Protocol (or press ⌘, on Mac)
Add the Memberberry MCP configuration:
{
"mcpServers": {
"memberberry": {
"url": "https://memberberry.radicalgeek.co.uk/mcp",
"headers": {
"x-api-key": "your-api-key-here",
"Accept": "application/json, text/event-stream"
},
"type": "http"
}
}
}Replace with your API key from the dashboard.
Cursor will now remember project decisions, architecture patterns, and your coding preferences across all conversations.
Add memory to GitHub Copilot and other AI assistants
Add to your MCP configuration:
{
"mcpServers": {
"memberberry": {
"url": "https://memberberry.radicalgeek.co.uk/mcp",
"type": "http"
}
}
}That's it! OAuth authentication will be handled automatically when you first connect.
Universal setup for all MCP clients
All MCP clients can connect to Memberberry using this standard configuration:
Endpoint URL:
https://memberberry.radicalgeek.co.uk/mcpAuthentication Header:
x-api-key: your-api-key-here
Full Configuration Example:
{
"mcpServers": {
"memberberry": {
"url": "https://memberberry.radicalgeek.co.uk/mcp",
"headers": {
"x-api-key": "your-api-key-here",
"Accept": "application/json, text/event-stream"
},
"type": "http"
}
}
}Memberberry works seamlessly through natural conversation
Simply chat naturally! When you share important information, ask the AI to remember it:
You:
"I prefer using TypeScript for all new projects. Please remember this."
AI:
✓ I've stored that preference in your memories.
The AI automatically recalls relevant memories based on your conversation context:
You:
"Let's start a new project"
AI:
Based on your preferences, I'll set up a TypeScript project...
Ask the AI to search your memories anytime:
You:
"What are my coding preferences?"
"Search my project memories"
"What do I remember about the SHAPO project?"
Make Memberberry tools easily accessible in GitHub Copilot Chat
Press ⌘⇧P (Mac) or Ctrl+Shift+P (Windows/Linux) and run:
Then add a toolset.jsonc file with:
{
"tools": [
{
"name": "store_memory",
"description": "Store important information for long-term memory",
"parameters": {
"content": "The information to remember",
"category": "Type: facts, preferences, conversations, projects, learning, goals, context, or reminders"
}
},
{
"name": "search_memory",
"description": "Search stored memories using text or semantic search",
"parameters": {
"query": "What to search for",
"category": "(optional) Filter by category"
}
},
{
"name": "list_memories",
"description": "List recent memories, optionally filtered by category"
},
{
"name": "get_stats",
"description": "View memory usage statistics"
}
]
}This makes Memberberry tools appear in your Copilot Chat suggestions!
Share memories with your team. Everyone on your account can access and contribute to the shared memory pool.