mcp.gd
Persistent memory for AI agents. Store and retrieve files via 14 MCP tools with OAuth 2.0 auth. Free 10GB tier.
Ads
Overview
AI agents like Claude autonomously save and retrieve files via MCP. Memory persists beyond sessions — pick up right where you left off. Claude: store_text({"filename": "project-notes.md", "content": "..."}) → ✓ Saved file_id: a1b2c3d4... Claude: get_file({"file_id": "a1b2c3d4..."}) → ✓ Retrieved previous notes. Continuing work. 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.
Installation
claude mcp add --transport sse mcp-gd https://mcp.gd/mcp/sse
Configuration
{
"mcpServers": {
"mcp-gd": {
"url": "https://mcp.gd/mcp/sse"
}
}
}Capabilities
- Persistent text memory
Ask your assistant to save notes or summaries with `store_text` and retrieve them in a later session via `get_file`.
- Structured data storage
Use `store_context` to save JSON data and `search_files` to find it again by content.
- File and folder management
Organize stored items by creating folders with `create_folder`, moving files with `move_file`, and listing contents via `list_folder_contents`.
- Storage usage monitoring
Check your current quota and usage with `get_storage_info` to stay within plan limits.
Tags
- cloud-storage
- memory
- file-management
- ai-agent