x1pm + Claude Code
Shared memory for your coding agent
The problem
Claude Code forgets your project context every session. You re-explain architecture decisions, coding standards, and current priorities every time you start.
Setup
Up and running in under 2 minutes.
1
Get your API key from x1pm
Sign up at x1pm.com and generate an API key from your organization settings.
2
Add to your Claude Code config
Drop the MCP config into your project.
// .claude/mcp.json
{
"mcpServers": {
"x1pm": {
"type": "http",
"url": "https://x1pm.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
},
"tools": ["healthCheck", "read", "write", "edit", "multiEdit", "ls", "glob", "grep"]
}
}
}3
Create your first workspace file
Add a context.md with your project decisions — Claude Code reads it every session.
# Project Context
## Architecture
- SvelteKit frontend, Python backend
- PostgreSQL with Drizzle ORM
## Current Sprint
- Shipping onboarding redesign
- API v2 migration in progressWhat you get
- Claude reads your context.md before starting work
- Tasks and decisions persist between sessions
- Multiple agents share the same project context
- Under 1000 tokens of setup — zero learning curve