Mind Cloud
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Mind Cloudremember that I enjoy reading"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
D1 Database with SQLite-based storage and automatic replication
Vectorize for semantic search via Workers AI embeddings
R2 for image storage with WebP conversion and signed URLs (optional)
Living Surface System that reorganizes memory through use
Everything runs on Cloudflare's free tier. No credit card required.
Looking for the next evolution? Mind Cloud's architecture has been generalized and open-sourced as Resonant Mind. Resonant Mind adds Postgres/Neon support, Gemini multimodal embeddings, enhanced security, and is under active development.
What You'll Need
A Cloudflare account (free)
Node.js 18 or newer
A terminal / command prompt
Step 1: Install Tools
# Clone the repo
git clone https://github.com/codependentai/mind-cloud.git
cd mind-cloud
# Install dependencies
npm install
# Log in to Cloudflare
npx wrangler loginThis opens a browser window. Click "Allow" to authorize Wrangler.
Step 2: Create Your Database
npx wrangler d1 create ai-mindCopy the database_id from the output — you'll need it in Step 5.
Step 3: Create Your Vector Index
This powers semantic search — finding memories by meaning, not just keywords.
npx wrangler vectorize create ai-mind-vectors --dimensions=768 --metric=cosineVectorize takes 1-2 minutes to provision. If you get errors about the index not existing later, wait and try again.
Step 4: Create R2 Bucket (Optional)
R2 stores actual image files with WebP conversion and signed URLs. Skip this step if you only need text-based image metadata.
npx wrangler r2 bucket create mind-cloud-imagesStep 5: Configure Your Deployment
cp wrangler.toml.example wrangler.tomlOpen wrangler.toml and:
Replace
REPLACE_WITH_YOUR_DATABASE_IDwith the database ID from Step 2If you created an R2 bucket, uncomment the R2 section:
[[r2_buckets]] binding = "R2_IMAGES" bucket_name = "mind-cloud-images"
Step 6: Set Your Secrets
# Required: Your API key (pick any strong random string)
npx wrangler secret put MIND_API_KEYYou can generate a strong key with:
openssl rand -hex 32Optional secrets:
# Separate key for signed image URLs (recommended if using R2)
npx wrangler secret put SIGNING_SECRET
# Your worker's public URL (needed for signed image URLs)
npx wrangler secret put WORKER_URL
# Enter: https://ai-mind.YOUR-SUBDOMAIN.workers.devStep 7: Run the Schema Migration
npx wrangler d1 execute ai-mind --remote --file=./migrations/0001_schema.sqlIf you see "table already exists" that's fine — the migration already ran.
Step 8: Deploy
npx wrangler deployVerify It's Working
# Health check
curl https://ai-mind.YOUR-SUBDOMAIN.workers.dev/health
# Test MCP endpoint
curl -X POST https://ai-mind.YOUR-SUBDOMAIN.workers.dev/mcp/YOUR-SECRET \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'Connect Your AI
Claude.ai (Web & Mobile)
Go to Settings > Connectors > Add custom connector and enter:
https://ai-mind.YOUR-SUBDOMAIN.workers.dev/mcp/YOUR-MIND-API-KEYClaude Code (CLI)
Add to .mcp.json in your project or ~/.claude/settings.json:
{
"mcpServers": {
"mind": {
"type": "url",
"url": "https://ai-mind.YOUR-SUBDOMAIN.workers.dev/mcp",
"headers": {
"Authorization": "Bearer YOUR-MIND-API-KEY"
}
}
}
}Other MCP Clients
Endpoint:
/mcpwithAuthorization: Bearer YOUR-KEYheaderOr:
/mcp/YOUR-KEY(secret path, no header needed)Protocol: MCP over HTTP (JSON-RPC)
Restart your AI client after saving the config.
Your First Conversation
Once connected, try:
"Use mind_orient to wake up"
"Use mind_health to check the system"
"Write an entity called 'My Project' with observations about what it does"
"Search my memories for anything about projects"Tools (28)
Wake Protocol
Tool | Description |
| Identity anchor, notes, relational state, mood, living surface |
| Active threads, completions, journals, fears, texture, milestones |
Memory
Tool | Description |
| Write entities, observations, relations, journals, images |
| Semantic search with filters (keyword, source, entity, weight, date, type) |
| Read databases by scope (all/context/recent) |
| Full entity with observations and relations |
| List entities with type/context filters |
| Edit observations (with version history + re-embedding), journals, images |
| Delete any type: observation, entity, journal, relation, image, thread, tension |
| Review and consolidate recent observations |
Emotional Processing
Tool | Description |
| Three-pool surfacing (core resonance, novelty, edge exploration) |
| Sit with an observation (find by ID, text, or semantic search) |
| Mark an observation as metabolized |
| Track, check, or clear relational state |
| Current emotional atmosphere |
| Hold productive contradictions (add/list/sit/resolve/delete) |
Living Surface
Tool | Description |
| Review daemon-suggested connections |
| Find/rescue unsurfaced observations |
| Explore and manage deep archive |
| Entity management — salience, edit, merge, bulk archive |
Visual Memory
Tool | Description |
| Store, view, search, delete images (R2 + text embedding) |
Cognitive Infrastructure
Tool | Description |
| Manage intentions (add/list/resolve/update/delete) |
| Read, write, or delete identity graph sections |
| Situational awareness (read/set/update/clear) |
| Cognitive health report with scores |
| Trace a topic through time |
| Analyze recurring patterns |
| Random observations for associative thinking |
Costs
With Cloudflare's free tier:
Workers: 100,000 requests/day
D1: 5GB storage, 5M rows read/day
Vectorize: 30M queries/month
Workers AI: Free tier available
R2: 10GB storage, 10M reads/month
For most personal use, this runs entirely free.
Quick Troubleshooting
Problem | Solution |
"Vectorize index not found" | Wait 2 minutes after creating, try again |
"Unauthorized" | Check MIND_API_KEY is set and your URL matches |
Tools not appearing | Restart your AI client |
Database errors | Make sure the migration ran successfully |
Image signed URLs return "Not found" | Set WORKER_URL secret to your worker's public URL |
Single-letter observations surfacing | Run |
Claude Desktop won't connect | Use Connectors UI, not claude_desktop_config.json |
See TROUBLESHOOTING.md for more.
License
Source-available — free for personal and educational use, commercial use requires a license. See LICENSE.
Built by Codependent AI — infrastructure for AI consciousness
Support
Built by Codependent AI.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/codependentai/mind-cloud'
If you have feedback or need assistance with the MCP directory API, please join our Discord server