Claude Code
Claude Code can use Memside as a remote MCP server for project continuity. The connection lets Claude Code load selected Memories, checkpoints, Operating Rules, and other saved context before planning, editing, or reviewing code.
The setup uses the Claude Code CLI and a Memside API key.
Before starting
Section titled “Before starting”- Install Claude Code and confirm that the
claudecommand works. - Sign in to Memside.
- Open Settings > Developer & API.
- Create an API key and copy it when shown.
Choose the connection scope
Section titled “Choose the connection scope”- Use project scope when Memside is needed only for the current project.
- Use user scope when Memside should be available across Claude Code projects.
Add Memside to the current project
Section titled “Add Memside to the current project”Open a terminal in the project folder and run:
claude mcp add --transport http --header "Authorization: Bearer mem_sk_your_memside_api_key" memside https://api.memside.com/mcp/Add Memside for all projects
Section titled “Add Memside for all projects”Run the same command with user scope:
claude mcp add --transport http --scope user --header "Authorization: Bearer mem_sk_your_memside_api_key" memside https://api.memside.com/mcp/Confirm the connection
Section titled “Confirm the connection”- Run
claude mcp list. - Open Claude Code.
- Use
/mcpto check the server status when needed.
Claude Code stores local or user-scope servers in ~/.claude.json. Project
servers are stored in .mcp.json at the project root.
Start with a read-only request:
Use Memside to load the current checkpoint before proposing changes.Troubleshooting
Section titled “Troubleshooting”- Run
claude mcp listand confirm thatmemsideis present. - Use
/mcpto inspect the connection state. - Confirm that the API key is active and the URL ends with
/mcp/. - Remove and add the server again if the stored configuration is incorrect.
Memside uses remote HTTP. Local Windows guidance for npx-based standard input
and output servers does not apply to this connection.