mcp.gd

官方

为AI代理提供持久化记忆。通过14个MCP工具及OAuth 2.0认证存储和检索文件。免费提供10GB存储空间。

你可以用 Gd MCP 做什么?

  • 持久文本记忆 — 让您的助手使用 store_text 保存笔记或摘要,并在后续会话中通过 get_file 检索它们。
  • 结构化数据存储 — 使用 store_context 保存 JSON 数据,并通过 search_files 按内容再次查找。
  • 文件和文件夹管理 — 通过 create_folder 创建文件夹、move_file 移动文件以及 list_folder_contents 列出内容来整理存储的项目。
  • 存储使用监控 — 使用 get_storage_info 检查您当前的配额和使用情况,以确保在套餐限制内。

文档

mcp.gd

面向 AI 的持久化记忆。

Claude 等 AI 代理可通过 MCP 自主保存和检索文件。记忆超越会话持续存在——随时从上次中断的地方继续。

免费开始使用 查看连接方式

# 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 优先的对象存储

14 个 MCP 工具

AI 代理所需的全部操作——文本存储、JSON 结构化数据、文件夹管理、文件移动——均以 MCP 工具形式提供。

跨会话记忆

超越上下文窗口的持久化存储。跨会话携带项目上下文、研究成果和决策。

OAuth 2.0 + API Token

浏览器自动 OAuth,VPS/CI 使用 API Token。可从任何环境连接——交互式或无头模式。

大文件,无限制

单个文件最大 100GB。按原样存储 PDF、电子表格、视频等。无存储上限。

多层安全防护

企业级安全:JWT 认证、CSRF 防护、CSP、HSTS、MIME 类型校验、Zip 炸弹检测。

Web UI + REST API

浏览器文件管理、全文搜索、文件夹共享。通过 REST API 和基于路径的 API 与现有工具集成。

如何连接

从 Claude 开始使用 mcp.gd,只需 3 步

1

在 mcp.gd 上创建账户

免费注册,无需信用卡。免费包含 10GB 存储空间和每月 10GB 流量。

创建账户 →

2

在 Claude 中注册 MCP 服务器

根据你的客户端进行配置。使用 OAuth(浏览器)或 API Token(无头/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

* 需要 Claude Pro / Team / Enterprise 套餐

# ~/Library/Application Support/Claude/claude_desktop_config.json
# (Windows: %APPDATA%\Claude\claude_desktop_config.json)
{
  "mcpServers": {
    "mcp-gd": {
      "url": "https://mcp.gd/mcp/sse"
    }
  }
}

配置后重启 Claude Desktop。首次连接时将在浏览器中提示 OAuth 认证。

# 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"
    }
  }
}

添加后,mcp.gd 工具将在下次启动 Claude Code 时可用。

# 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 Token 无需基于浏览器的 OAuth 即可工作——非常适合服务器、CI/CD 流水线和自动化工作流。

3

直接与 Claude 对话

连接后,即可通过自然对话进行文件操作。Claude 会自动调用所需的 MCP 工具。

# 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...

14 个可用的 MCP 工具

store_text 保存文本

store_context 保存 JSON 数据

get_file 获取文件

list_files 列出文件

delete_file 删除文件

move_file 移动文件

create_folder 创建文件夹

list_folders 列出文件夹

get_folder 获取文件夹信息

list_folder_contents 列出文件夹内容

move_folder 移动文件夹

delete_folder 删除文件夹

get_storage_info 检查存储用量

search_files 搜索文件

直接 API 端点

SSE GET https://mcp.gd/mcp/sse

RPC POST https://mcp.gd/mcp/message

简单定价

选择适合你需求的套餐。可随时升级或降级。

免费

免费版

$0 / 月

  • 10 GB 存储空间
  • 每月 10 GB 流量
  • 100 MB 网页上传
  • 无需信用卡

入门版

$5 / 月

  • 100 GB 存储空间
  • 每月 100 GB 流量
  • 10 GB 网页上传

商业版

$100 / 月

+$50/席位(额外成员)

  • 10 TB 存储空间
  • 每月 10 TB 流量
  • 100 GB 网页上传
  • 团队 + 审计日志

* 超出套餐限额的部分:$0.05/GB(从余额中扣除)