Persistent Memory for AI.
AI agents like Claude autonomously save and retrieve files via MCP. Memory persists beyond sessions — pick up right where you left off.
# Claude autonomously saves files via MCP
Claude: store_text({"filename": "project-notes.md", "content": "..."})
→ ✓ Saved file_id: a1b2c3d4...
# Next day, in a new session
Claude: get_file({"file_id": "a1b2c3d4..."})
→ ✓ Retrieved previous notes. Continuing work.
AI-first object storage
All operations AI agents need — text storage, JSON structured data, folder management, file moves — provided as MCP tools.
Persistent storage beyond the context window. Carry project context, research, and decisions across sessions.
Auto OAuth for browsers, API Tokens for VPS/CI. Connect from any environment — interactive or headless.
Up to 100GB per file. Store PDFs, spreadsheets, videos, and more as-is. No storage cap.
Enterprise-grade security: JWT auth, CSRF protection, CSP, HSTS, MIME type validation, Zip Bomb detection.
Browser file management, full-text search, folder sharing. Integrate with existing tools via REST API and path-based API.
Get started with mcp.gd from Claude in 3 steps
Free sign-up, no credit card required. 10GB storage and 10GB/month traffic included free.
Create Account →Configure for your client. Use OAuth (browser) or API Token (headless/VPS/CI).
# Claude.ai Setup
1. Open Claude.ai, click your icon (top right) → Settings
2. Select Integrations from the left menu
3. Click Add integration
4. Enter the URL below and click Save
https://mcp.gd/mcp/sse
5. Browser opens the mcp.gd login page — authenticate
6. Click Allow to complete the connection
* Requires Claude Pro / Team / Enterprise plan
# ~/Library/Application Support/Claude/claude_desktop_config.json
# (Windows: %APPDATA%\Claude\claude_desktop_config.json)
{
"mcpServers": {
"mcp-gd": {
"url": "https://mcp.gd/mcp/sse"
}
}
}
Restart Claude Desktop after configuration. OAuth authentication will be prompted in the browser on first connection.
# Add MCP server via CLI
claude mcp add --transport sse mcp-gd https://mcp.gd/mcp/sse
# Or add directly to ~/.claude/mcp.json
{
"mcpServers": {
"mcp-gd": {
"url": "https://mcp.gd/mcp/sse"
}
}
}
After adding, mcp.gd tools become available on the next Claude Code launch.
# For VPS, CI/CD, or headless environments
# 1. Go to Dashboard → API Tokens → Create Token
# 2. Add to your mcp.json with Authorization header:
{
"mcpServers": {
"mcp-gd": {
"url": "https://mcp.gd/mcp/sse",
"headers": {
"Authorization": "Bearer mcp_gd_YOUR_TOKEN_HERE"
}
}
}
}
API Tokens work without browser-based OAuth — ideal for servers, CI/CD pipelines, and automated workflows.
After connecting, file operations are possible through natural conversation. Claude autonomously calls the necessary MCP tools.
# Usage example
You: Save today's research summary to mcp.gd
Claude: store_text → ✓ Saved research-2026-02-20.md
You: Show me the project notes I saved last week
Claude: list_files → get_file → ✓ Here are the contents...
Direct API Endpoints
Choose the plan that fits your needs. Upgrade or downgrade anytime.
* Overage beyond plan limits: $0.05/GB (deducted from deposit balance)
Create a free account and start working with Claude long-term, today.