Zoom Phone + Virtual Agent MCP Server
Exposes Zoom Phone call data and Zoom Virtual Agent knowledge-base/engagement data as tools for AI clients, authenticated via server-to-server OAuth.
README
Zoom Phone + Virtual Agent MCP Server
A custom MCP server exposing Zoom Phone call data and Zoom Virtual Agent knowledge-base/engagement data as tools for an AI client (Claude Code, Claude Desktop, etc). Authenticates with Server-to-Server (Account) OAuth — no end-user login flow, no browser redirect. The server acts as your Zoom account directly.
1. Create the Marketplace app (one-time)
-
Go to https://marketplace.zoom.us/ → Develop → Build App.
-
Choose Server-to-Server OAuth.
-
Note the Account ID, Client ID, and Client Secret shown after creation.
-
Under Scopes, add (granular scopes):
phone:read:call_history:adminphone:read:call_log:adminphone:read:call_historyphone:read:call_logphone:read:list_call_handling_settings:adminphone:update:call_handling_settings:adminkm:read:list_articles:admin(or the current KM read scope shown in the app's scope picker)km:write:article:adminkm:write:sync:adminvirtual_agent:read:list_engagements:adminvirtual_agent:read:list_transcripts:admin
Scope names occasionally get renamed by Zoom — use the scope picker in your app as the source of truth; add only what the tools you actually plan to call require.
-
Activate the app.
2. Configure credentials
cp .env.example .env
# fill in ZOOM_ACCOUNT_ID, ZOOM_CLIENT_ID, ZOOM_CLIENT_SECRET
The server reads these from process.env — either export them in your shell, use a .env
loader of your choice, or (recommended) pass them via your MCP client's config as shown below,
so the secret never lives in a file you might commit.
3. Build
npm install
npm run build
4. Register with an MCP client
Claude Code:
claude mcp add zoom-phone-va \
--command node \
--args dist/index.js \
--env ZOOM_ACCOUNT_ID=xxx \
--env ZOOM_CLIENT_ID=xxx \
--env ZOOM_CLIENT_SECRET=xxx
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"zoom-phone-va": {
"command": "node",
"args": ["/absolute/path/to/zoom-mcp-server/dist/index.js"],
"env": {
"ZOOM_ACCOUNT_ID": "xxx",
"ZOOM_CLIENT_ID": "xxx",
"ZOOM_CLIENT_SECRET": "xxx"
}
}
}
}
Tools exposed
Zoom Phone
| Tool | Purpose |
|---|---|
phone_get_account_call_history |
Account-wide call history, by date range |
phone_get_account_call_logs |
Account-wide call logs, by date range |
phone_get_call_log_details |
Single call log detail |
phone_get_call_element |
Single call leg/segment detail |
phone_get_user_call_history |
One user's call history |
phone_get_user_call_logs |
One user's call logs |
phone_get_user_call_handling_settings |
Read business/closed/holiday hour routing for a user |
phone_update_user_call_handling_setting |
Write — update a user's call routing config |
phone_get_auto_receptionist_call_handling_settings |
Read routing for an auto receptionist (IVR) |
phone_update_auto_receptionist_call_handling_setting |
Write — update auto receptionist routing config |
Zoom Virtual Agent
| Tool | Purpose |
|---|---|
va_get_articles |
List KB articles |
va_get_article |
Get one KB article |
va_create_article |
Write — create a KB article |
va_update_article |
Write — update a KB article |
va_sync_knowledge_base |
Write — trigger an external KB sync job |
va_get_sync_status |
Poll a sync job's status |
va_get_engagements |
Bot conversation session report |
va_get_query_details |
Query-level detail (what was asked, answered or not) |
va_get_transcripts |
Full conversation transcripts |
Notes on the auth model
- S2S access tokens expire after 1 hour;
src/zoomAuth.tscaches the token in memory and transparently refreshes ~60s before expiry. There is no refresh token in this flow — a new token is simply requested. - All API calls run with the account's permissions — every tool call can see data across the whole account (subject to granted scopes), not just one user's. Scope your Marketplace app's granted scopes to only what you intend these tools to do.
- This flow is appropriate for backend automation on your own account. If you later need this server to act on behalf of other Zoom accounts/users, that requires switching to User OAuth (authorization code + refresh tokens) instead — a materially different auth model, not a drop-in swap.
Project layout
src/
index.ts # MCP server entry (stdio transport), registers all tools
zoomAuth.ts # S2S token fetch + in-memory cache/refresh
zoomClient.ts # Thin authenticated fetch wrapper for api.zoom.us/v2
tools/
phone.ts # Zoom Phone tools
virtualAgent.ts # Zoom Virtual Agent tools
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。