dropbox-transcripts-mcp
dropbox-transcripts-mcp
一个 MCP 服务器,用于索引存储在 Dropbox 中的纯文本播客转录稿,并使其能够在 Claude Code 中进行搜索。当添加新的转录稿时会自动同步。
功能
将 Dropbox 文件夹中的所有
.txt转录稿缓存到本地 SQLite 数据库中,并支持全文搜索 (FTS5)每隔 N 小时轮询一次 Dropbox,并自动索引新增或更改的文件
为 Claude Code 提供四个工具:列出、检索、搜索和手动同步
Related MCP server: transcript-search
前置要求
Python 3.10+
uv (macOS 上使用
brew install uv)一个 Dropbox 账户,且转录稿存放在某个文件夹中(默认:
/Podcasts/Lenny)
设置
1. 创建 Dropbox 应用
点击 Create app
选择 Scoped access 和 Full Dropbox
随意命名(例如
transcripts-mcp)在 Permissions 选项卡下,启用:
files.metadata.readfiles.content.read
从 Settings 选项卡复制 App Key 和 App Secret
2. 运行身份验证设置
uvx --from git+https://github.com/YOUR_USERNAME/dropbox-transcripts-mcp dropbox-transcripts-setup这将引导你完成 OAuth 流程并打印出你的 DROPBOX_REFRESH_TOKEN。它还会打印出需要粘贴到 Claude Code 设置中的确切 MCP 配置块。
3. 添加到 Claude Code
编辑 ~/.claude/settings.json 并添加:
{
"mcpServers": {
"transcripts": {
"command": "uvx",
"args": [
"--from", "git+https://github.com/YOUR_USERNAME/dropbox-transcripts-mcp",
"dropbox-transcripts-mcp"
],
"env": {
"DROPBOX_APP_KEY": "your_app_key",
"DROPBOX_APP_SECRET": "your_app_secret",
"DROPBOX_REFRESH_TOKEN": "your_refresh_token",
"DROPBOX_FOLDER_PATH": "/Podcasts/Lenny"
}
}
}
}Claude Code 首次启动服务器时,它将同步 Dropbox 中的所有转录稿。后续同步会在后台每 6 小时(可配置)自动进行一次。
配置
所有配置均通过环境变量进行:
变量 | 必需 | 默认值 | 描述 |
| 是 | Dropbox 应用密钥 | |
| 是 | Dropbox 应用密钥密码 | |
| 是 | OAuth 刷新令牌 | |
| 否 |
| Dropbox 中转录稿文件夹的路径 |
| 否 |
| 轮询 Dropbox 更改的频率 |
| 否 |
| 本地 SQLite 数据库路径 |
文件命名规范
转录稿文件应命名为 Guest Name.txt。文件名(不含 .txt)将成为 get_episode 使用的剧集标识符,并显示在 list_episodes 中。
示例:Adam Fishman.txt, Elena Verna 2.0.txt
可用工具
工具 | 描述 |
| 列出所有已索引的剧集及上次同步时间 |
| 按嘉宾姓名获取完整转录稿(支持部分匹配) |
| 带有高亮片段的全文搜索。支持带引号的短语、AND/OR 逻辑、前缀通配符 ( |
| 手动触发 Dropbox 同步 |
许可证
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceAn MCP server that makes Claude Code conversation history searchable and proactively useful by indexing past sessions with hybrid BM25+TF-IDF search, extracting decisions and solutions, and auto-injecting relevant project context at session start.91365MIT
- FlicenseNot gradedqualityDmaintenanceA semantic search system for Claude Code transcript history, exposed as an MCP server so Claude Code can query its own past sessions.
- AlicenseNot gradedqualityDmaintenanceA local MCP server that indexes and searches your Claude Code conversation history with both keyword and semantic search, fully private and running locally.MIT
- AlicenseAqualityBmaintenanceMCP server that indexes Claude.ai chats and local Claude Code sessions, enabling semantic and keyword search across all your conversations with Claude.66MIT
Related MCP Connectors
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Augments MCP Server - A comprehensive framework documentation provider for Claude Code
An MCP server that gives your AI access to the source code and docs of all public github repos
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/pedraum/dropbox-transcripts-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server