MS 365-21V MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MS_CLIENT_ID | No | The Application (client) ID of the MCP API app registration. | |
| MS_TENANT_ID | No | The tenant ID of the Microsoft 365 operated by 21Vianet tenant. | |
| MCP_HTTP_HOST | No | The host to bind the HTTP server to. Default is 0.0.0.0. | 0.0.0.0 |
| MCP_HTTP_PATH | No | The path for the Streamable HTTP endpoint. Default is /mcp. | /mcp |
| MCP_HTTP_PORT | No | The port for the HTTP server. Default is 3000. | 3000 |
| MCP_SEND_MODE | No | Send mode for mail/Teams: confirm or automatic. Default is confirm. | confirm |
| MCP_ADMIN_TOKEN | No | A long random value for admin endpoints. | |
| MS_CLIENT_SECRET | No | The client secret for the MCP API app, used for OBO. | |
| MS_AUTHORITY_HOST | No | The Entra authority host for 21V. Use https://login.partner.microsoftonline.cn or https://login.chinacloudapi.cn depending on tenant. | |
| MS_GRAPH_BASE_URL | No | The Microsoft Graph base URL for China, e.g. https://microsoftgraph.chinacloudapi.cn/v1.0 | |
| MCP_TOKEN_AUDIENCE | No | The expected audience of the access token, e.g. api://<API_CLIENT_ID> | |
| MS_OAUTH_CLIENT_ID | No | The Application (client) ID of the Web login app. Leave empty for single-app mode. | |
| MCP_PUBLIC_BASE_URL | No | The public base URL of the MCP service, without /mcp. e.g. https://mcp.example.cn | |
| MCP_AUDIT_LOG_ENABLED | No | Enable audit logging. Default is true. | true |
| MCP_CONFIRM_OPERATIONS | No | Comma-separated operations that require confirmation, e.g. delete, create-calendar, etc. | |
| MCP_TOOL_EXPOSURE_MODE | No | Tool exposure mode: direct, discovery, or hybrid. Default is hybrid. | hybrid |
| MS_OAUTH_CLIENT_SECRET | No | The client secret for the Web login app. Leave empty for single-app mode. | |
| MCP_AUTHORIZATION_SCOPES | No | The scope(s) required for MCP API access, e.g. api://<API_CLIENT_ID>/access_as_user | |
| MCP_OAUTH_BRIDGE_ENABLED | No | Whether the OAuth bridge is enabled. Default is true. | true |
| MCP_ROLE_BASED_FILTERING | No | Enable App Role based tool filtering. Default is false. | false |
| MCP_DISABLED_GRAPH_SCOPES | No | Comma-separated list of Graph scopes to disable for tools. | |
| MCP_REQUIRED_TOKEN_SCOPES | No | The required token scopes, e.g. access_as_user | |
| MCP_OAUTH_BRIDGE_MICROSOFT_CLIENT_TYPE | No | The type of the Microsoft OAuth client. Default is confidential_web. | confidential_web |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| auth_start_device_loginA | Development only. Start a 21V Entra device-code login and cache the result locally. Chinese intents / 中文意图: 本地登录, 设备代码登录, 开发调试登录. |
| auth_complete_device_loginA | Development only. Poll the token endpoint after the user enters the device code, then cache the token locally. Token values are not returned. Chinese intents / 中文意图: 完成本地登录, 完成设备码登录, 保存本地令牌. |
| auth_statusA | Inspect MCP auth state, local token state, remote OAuth/OBO configuration, and current request user details. Token values are never returned. Chinese intents / 中文意图: 查看认证状态, 检查登录状态, 诊断授权问题. |
| auth_clear_local_cacheA | Development only. Delete locally cached tokens and pending device-code login state. Chinese intents / 中文意图: 清除本地登录, 退出本地登录, 删除缓存令牌. |
| confirm_executeA | Continue a pending sensitive operation after the same signed-in user approved its web preview. This tool never grants approval itself. Call it only after the user says the confirmation page was approved; the token is user-bound, one-time, and short-lived. Chinese intents / 中文意图: 继续执行我刚刚在网页确认的操作, 执行已批准的敏感操作. |
| graph_get_meA | Read the signed-in user profile from Microsoft Graph /me. Use for questions about account identity, email address, display name, job title, and department. Chinese intents / 中文意图: 获取我的个人资料, 查看我的账号信息, 我是谁, 查看我的邮箱和部门. |
| users_listA | List organization users with basic profile fields. Requires delegated User.ReadBasic.All. Chinese intents / 中文意图: 列出公司用户, 查看组织通讯录, 浏览同事列表. |
| users_searchA | Search tenant users by name, email, or UPN and return basic profile data. Requires delegated User.ReadBasic.All. Chinese intents / 中文意图: 搜索公司用户, 查找同事, 按姓名查人, 按邮箱查人. |
| users_get_profileA | Read a tenant user profile, including job title, department, and contact fields. Requires delegated User.Read.All. Chinese intents / 中文意图: 查看同事资料, 查看用户部门职位, 查看组织用户信息. |
| users_get_managerA | Get the manager of the signed-in user or another organization user. Requires delegated User.Read.All. Chinese intents / 中文意图: 查看我的经理, 查看同事的主管, 谁是这个用户的上级. |
| users_list_direct_reportsA | List direct reports for the signed-in user or another organization user. Requires delegated User.Read.All. Chinese intents / 中文意图: 查看我的下属, 列出直属团队成员, 查看某人的直接汇报人. |
| users_list_membershipsA | List groups and directory objects that a user directly belongs to. Omit the user to query the signed-in user. Chinese intents / 中文意图: 查看我加入的组, 查看用户所属组, 查询用户成员关系. |
| groups_listA | List Microsoft Entra security groups and Microsoft 365 groups. Optionally filter by display-name prefix. Requires delegated GroupMember.Read.All. Chinese intents / 中文意图: 列出公司组, 搜索安全组, 查看Microsoft 365组. |
| groups_getA | Read details for a Microsoft Entra or Microsoft 365 group. Chinese intents / 中文意图: 查看组详情, 查看安全组信息, 查看Microsoft 365组信息. |
| groups_list_membersA | List direct members of a group. Hidden-membership groups may require additional tenant permissions. Chinese intents / 中文意图: 查看组成员, 列出安全组用户, 谁在这个组里. |
| groups_list_ownersB | List owners of a Microsoft Entra or Microsoft 365 group. Chinese intents / 中文意图: 查看组所有者, 查看组管理员, 谁负责这个组. |
| groups_check_my_membershipsA | Check which of up to 20 supplied group IDs contain the signed-in user, including transitive membership. Chinese intents / 中文意图: 检查我是否在这些组, 验证我的组成员身份, 检查用户权限组. |
| mail_list_messagesA | List recent messages in the signed-in user mailbox. Supports recent mail and unread mail queries. Requires delegated Mail.Read. Chinese intents / 中文意图: 查看我的邮件, 看最近邮件, 查看未读邮件, 列出收件箱邮件. |
| mail_search_messagesA | Search messages in the signed-in user mailbox by keyword. Requires delegated Mail.Read. Chinese intents / 中文意图: 搜索邮件, 按关键词查邮件, 查找某封邮件. |
| mail_get_messageA | Read detailed content for a message, including body, sender, recipients, and attachment flag. Requires delegated Mail.Read. Chinese intents / 中文意图: 查看邮件详情, 读取邮件正文, 查看邮件内容, 查看邮件收件人. |
| mail_list_foldersA | List mailbox folders for the signed-in user. Use this to choose a destination when moving messages. Requires delegated Mail.Read. Chinese intents / 中文意图: 查看邮件文件夹, 列出邮箱文件夹, 查看收件箱草稿箱已发送. |
| mail_get_folderA | Read mailbox-folder details and item counts. Requires delegated Mail.Read. Chinese intents / 中文意图: 查看邮件文件夹详情, 查看文件夹未读数量, 读取邮箱目录信息. |
| mail_list_child_foldersC | List child folders under a mailbox folder. Requires delegated Mail.Read. Chinese intents / 中文意图: 查看子邮件文件夹, 展开邮箱目录, 列出文件夹下的目录. |
| mail_list_folder_messagesA | List recent messages in a selected mailbox folder. Requires delegated Mail.Read. Chinese intents / 中文意图: 查看指定文件夹邮件, 查看归档邮件, 列出草稿箱邮件. |
| mail_create_folderA | Create a top-level or child mailbox folder. Requires delegated Mail.ReadWrite. Chinese intents / 中文意图: 创建邮件文件夹, 新建邮箱目录, 创建子文件夹. |
| mail_update_folderA | Rename a mailbox folder. Requires delegated Mail.ReadWrite. Chinese intents / 中文意图: 重命名邮件文件夹, 修改邮箱目录名称. |
| mail_delete_folderA | Delete a mailbox folder and its contents. Requires delegated Mail.ReadWrite. Chinese intents / 中文意图: 删除邮件文件夹, 移除邮箱目录. |
| mail_list_attachmentsA | List attachment metadata for a message. Requires delegated Mail.Read. Chinese intents / 中文意图: 查看邮件附件, 列出邮件附件, 邮件有没有附件. |
| mail_get_attachmentA | Read one mail attachment. Set raw=true to return file bytes as base64, limited to 10 MB. Requires delegated Mail.Read. Chinese intents / 中文意图: 读取邮件附件, 下载邮件附件, 查看附件内容. |
| mail_add_file_attachmentA | Add a base64-encoded file under 3 MB to an existing draft message. Requires delegated Mail.ReadWrite. Chinese intents / 中文意图: 给邮件添加附件, 给草稿添加文件, 附加文件到邮件. |
| mail_delete_attachmentA | Delete an attachment from a draft message. Requires delegated Mail.ReadWrite. Chinese intents / 中文意图: 删除邮件附件, 从草稿移除附件. |
| mail_sendC | Send an email as the signed-in user. Requires delegated Mail.Send. Chinese intents / 中文意图: 发送邮件, 帮我发邮件, 给某人发邮件. |
| mail_create_draftA | Create an email draft without sending it. Requires delegated Mail.ReadWrite. Chinese intents / 中文意图: 创建邮件草稿, 写邮件草稿, 先不要发送邮件. |
| mail_send_draftA | Send an existing draft message. Requires delegated Mail.Send. Chinese intents / 中文意图: 发送草稿, 发送邮件草稿, 把草稿发出去. |
| mail_replyA | Reply to an existing message. Requires delegated Mail.Send. Chinese intents / 中文意图: 回复邮件, 回这封邮件, 给邮件写回复. |
| mail_forwardA | Forward an existing message to one or more recipients. Requires delegated Mail.Send. Chinese intents / 中文意图: 转发邮件, 把邮件转给别人, 转发这封邮件. |
| mail_set_read_stateA | Mark a message as read or unread. Requires delegated Mail.ReadWrite. Chinese intents / 中文意图: 标记邮件已读, 标记邮件未读, 更改邮件读取状态. |
| mail_move_messageA | Move a message to a target mailbox folder. Requires delegated Mail.ReadWrite. Chinese intents / 中文意图: 移动邮件, 把邮件移到文件夹, 整理邮件. |
| mail_copy_messageA | Copy a message into another mailbox folder. Requires delegated Mail.ReadWrite. Chinese intents / 中文意图: 复制邮件, 把邮件复制到文件夹, 保留邮件副本. |
| mail_delete_messageA | Delete a message. Requires delegated Mail.ReadWrite. Chinese intents / 中文意图: 删除邮件, 删掉这封邮件, 移除邮件. |
| calendar_list_eventsA | List upcoming calendar events for the signed-in user. Use for today, this week, or upcoming meeting queries. Requires delegated Calendars.Read. Chinese intents / 中文意图: 查看我的日历, 查看今天会议, 查看本周日程, 查看接下来的会议. |
| calendar_list_viewA | List single and recurring event instances in an explicit date-time range. Requires delegated Calendars.Read. Chinese intents / 中文意图: 按时间范围查看日历, 查看指定日期的会议, 展开重复日程. |
| calendar_list_calendarsA | List calendars for the signed-in user. Requires delegated Calendars.Read. Chinese intents / 中文意图: 查看日历列表, 列出我的日历, 有哪些日历. |
| calendar_create_calendarA | Create an additional calendar for the signed-in user. Chinese intents / 中文意图: 创建新日历, 新建项目日历, 添加一个日历. |
| calendar_update_calendarB | Rename one of the signed-in user calendars. Chinese intents / 中文意图: 重命名日历, 修改日历名称. |
| calendar_delete_calendarA | Delete an additional calendar and its events. Chinese intents / 中文意图: 删除日历, 移除项目日历. |
| calendar_get_eventA | Read details for a calendar event. Requires delegated Calendars.Read. Chinese intents / 中文意图: 查看会议详情, 查看日程详情, 读取日历事件. |
| calendar_list_event_instancesB | List occurrences of a recurring event in a date-time range. Chinese intents / 中文意图: 查看重复会议实例, 查看周期日程的每次会议, 展开循环会议. |
| calendar_get_scheduleA | Get free/busy availability for users, rooms, or distribution lists in a time range. Supported in 21V and requires delegated Calendars.Read. Chinese intents / 中文意图: 查看同事忙闲, 查询会议室是否空闲, 找共同空闲时间. |
| calendar_create_eventA | Create an event or meeting in the signed-in user default calendar. Requires delegated Calendars.ReadWrite. Chinese intents / 中文意图: 创建会议, 新建日程, 安排会议, 创建日历事件. |
| calendar_update_eventA | Update a calendar event. Provide only the fields to change. Requires delegated Calendars.ReadWrite. Chinese intents / 中文意图: 修改会议, 更新日程, 改会议时间, 调整日历事件. |
| calendar_cancel_eventA | Cancel a meeting organized by the signed-in user and notify attendees. Requires delegated Calendars.ReadWrite. Chinese intents / 中文意图: 取消我组织的会议, 取消会议并通知参会人, 发送会议取消通知. |
| calendar_delete_eventB | Delete a calendar event. Requires delegated Calendars.ReadWrite. Chinese intents / 中文意图: 删除会议, 取消日程, 删除日历事件. |
| calendar_respond_to_eventA | Accept, tentatively accept, or decline a meeting invitation. Requires delegated Calendars.ReadWrite. Chinese intents / 中文意图: 接受会议邀请, 拒绝会议邀请, 暂定会议, 回复会议邀请. |
| calendar_list_attachmentsA | List attachment metadata for a calendar event. Chinese intents / 中文意图: 查看会议附件, 列出日程附件, 会议有没有附件. |
| calendar_add_file_attachmentB | Add a base64-encoded file under 3 MB to a calendar event. Chinese intents / 中文意图: 给会议添加附件, 给日程附加文件. |
| calendar_delete_attachmentB | Delete an attachment from a calendar event. Chinese intents / 中文意图: 删除会议附件, 移除日程附件. |
| drive_get_driveA | Read signed-in user OneDrive metadata, owner, type, and quota. Chinese intents / 中文意图: 查看我的OneDrive信息, 查看网盘容量, 查看OneDrive配额. |
| drive_list_rootA | List files and folders in the signed-in user OneDrive root. Requires delegated Files.Read. Chinese intents / 中文意图: 查看我的OneDrive, 查看网盘根目录, 列出OneDrive文件. |
| drive_list_childrenB | List files and folders under a selected OneDrive folder. Chinese intents / 中文意图: 查看OneDrive文件夹内容, 展开网盘目录, 列出文件夹里的文件. |
| drive_list_recentA | List files recently used by the signed-in user. Chinese intents / 中文意图: 查看最近使用的文件, 列出最近打开的OneDrive文件, 我的最近文档. |
| drive_search_itemsA | Search files visible to the signed-in user in OneDrive. Requires delegated Files.Read. Chinese intents / 中文意图: 搜索OneDrive文件, 查找网盘文件, 按文件名搜索. |
| drive_get_itemA | Read metadata for a file or folder in the signed-in user OneDrive. Requires delegated Files.Read. Chinese intents / 中文意图: 查看OneDrive文件详情, 查看网盘文件信息, 读取文件元数据. |
| drive_download_fileA | Download a OneDrive file and return its bytes as base64. The MCP response is limited to 10 MB. Chinese intents / 中文意图: 下载OneDrive文件, 读取网盘文件内容, 获取文件base64. |
| drive_create_folderA | Create a folder in the signed-in user OneDrive root or under a parent folder. Requires delegated Files.ReadWrite. Chinese intents / 中文意图: 创建OneDrive文件夹, 新建网盘文件夹, 创建目录. |
| drive_upload_small_fileA | Upload a small file to the signed-in user OneDrive. Use upload sessions for large files. Requires delegated Files.ReadWrite. Chinese intents / 中文意图: 上传OneDrive文件, 上传网盘文件, 保存文件到OneDrive. |
| drive_rename_itemA | Rename a file or folder in the signed-in user OneDrive. Requires delegated Files.ReadWrite. Chinese intents / 中文意图: 重命名OneDrive文件, 改文件名, 重命名文件夹. |
| drive_move_itemA | Move a file or folder in the signed-in user OneDrive to a new parent folder. Requires delegated Files.ReadWrite. Chinese intents / 中文意图: 移动OneDrive文件, 移动网盘文件, 把文件移到文件夹. |
| drive_copy_itemA | Copy a OneDrive file or folder asynchronously to another folder. The response may include an operation monitor URL. Chinese intents / 中文意图: 复制OneDrive文件, 复制网盘文件夹, 创建文件副本. |
| drive_delete_itemA | Delete a file or folder in the signed-in user OneDrive. Requires delegated Files.ReadWrite. Chinese intents / 中文意图: 删除OneDrive文件, 删除网盘文件, 删除文件夹. |
| drive_create_share_linkA | Create a sharing link for a file or folder in the signed-in user OneDrive. Requires delegated Files.ReadWrite. Actual sharing scope depends on tenant policy. Chinese intents / 中文意图: 创建OneDrive分享链接, 分享网盘文件, 生成文件链接. |
| drive_invite_itemA | Grant selected people read or write access to a OneDrive item and optionally send an invitation. Chinese intents / 中文意图: 共享OneDrive文件给指定人员, 邀请同事访问文件, 授予文件权限. |
| drive_list_permissionsA | List permission and sharing metadata for a file or folder in the signed-in user OneDrive. Requires delegated Files.Read. Chinese intents / 中文意图: 查看OneDrive权限, 查看文件共享权限, 查看谁能访问文件. |
| drive_list_versionsA | List retained versions of a OneDrive file. Chinese intents / 中文意图: 查看OneDrive版本历史, 列出文件旧版本, 查看文档版本. |
| drive_restore_versionB | Restore a selected historical version of a OneDrive file. Chinese intents / 中文意图: 恢复OneDrive文件版本, 回滚网盘文件, 还原文档旧版本. |
| sharepoint_search_sitesA | Search SharePoint sites visible to the signed-in user. Requires delegated Sites.Read.All. Chinese intents / 中文意图: 搜索SharePoint站点, 查找公司站点, 查找团队网站, 查看SharePoint网站. |
| sharepoint_get_siteA | Read SharePoint site metadata by site ID. Requires delegated Sites.Read.All. Chinese intents / 中文意图: 查看SharePoint站点详情, 读取站点信息, 查看站点地址. |
| sharepoint_list_listsA | List SharePoint lists and document-library lists in a site. Requires delegated Sites.Read.All. Chinese intents / 中文意图: 查看SharePoint列表, 列出站点Lists, 查看站点文档库, 查看站点中的清单. |
| sharepoint_list_list_itemsA | List items and field values in a SharePoint list. Optional filters work best on indexed columns. Requires delegated Sites.Read.All. Chinese intents / 中文意图: 查看SharePoint列表项, 读取SharePoint清单数据, 查询列表记录, 筛选SharePoint列表. |
| sharepoint_get_list_itemA | Read one SharePoint list item and its fields. Requires delegated Sites.Read.All. Chinese intents / 中文意图: 查看SharePoint列表项详情, 读取一条清单记录, 查看列表字段. |
| sharepoint_create_list_itemA | Create an item in a SharePoint list using internal column names. Requires delegated Sites.ReadWrite.All. Chinese intents / 中文意图: 创建SharePoint列表项, 新增清单记录, 向SharePoint列表写入数据. |
| sharepoint_update_list_itemA | Update selected fields on a SharePoint list item. Unspecified fields remain unchanged. Requires delegated Sites.ReadWrite.All. Chinese intents / 中文意图: 更新SharePoint列表项, 修改清单记录, 编辑SharePoint字段. |
| sharepoint_delete_list_itemA | Delete an item from a SharePoint list. This is a write operation and may move the item to the site recycle bin. Requires delegated Sites.ReadWrite.All. Chinese intents / 中文意图: 删除SharePoint列表项, 删除清单记录, 移除SharePoint数据. |
| sharepoint_list_drivesA | List document libraries available in a SharePoint site. Each library is returned as a drive. Requires delegated Files.Read.All. Chinese intents / 中文意图: 查看SharePoint文档库, 列出站点文件库, 查看团队文件库. |
| sharepoint_list_drive_itemsA | List files and folders in a SharePoint document library root or folder. Requires delegated Files.Read.All. Chinese intents / 中文意图: 查看SharePoint文件, 列出文档库文件, 查看SharePoint文件夹, 浏览团队文件. |
| sharepoint_search_drive_itemsA | Search files and folders in a SharePoint document library. Requires delegated Files.Read.All. Chinese intents / 中文意图: 搜索SharePoint文件, 在文档库查文件, 查找团队文档. |
| sharepoint_get_drive_itemA | Read metadata for a SharePoint document-library file or folder. Requires delegated Files.Read.All. Chinese intents / 中文意图: 查看SharePoint文件详情, 读取文档库文件信息, 查看SharePoint文件元数据. |
| sharepoint_create_drive_folderA | Create a folder in a SharePoint document library root or parent folder. Requires delegated Files.ReadWrite.All. Chinese intents / 中文意图: 创建SharePoint文件夹, 在文档库新建目录, 新建团队文件夹. |
| sharepoint_upload_small_fileB | Upload a small file to a SharePoint document library using a path relative to the library root. Requires delegated Files.ReadWrite.All. Chinese intents / 中文意图: 上传SharePoint文件, 上传文档到站点, 保��文件到团队文档库. |
| sharepoint_delete_drive_itemA | Delete a file or folder from a SharePoint document library. This is a write operation and may move the item to the recycle bin. Requires delegated Files.ReadWrite.All. Chinese intents / 中文意图: 删除SharePoint文件, 删除文档库文件, 删除SharePoint文件夹. |
| sharepoint_get_site_by_pathB | Resolve a SharePoint site by hostname and server-relative path. Chinese intents / 中文意图: 按网址查SharePoint站点, 通过站点路径获取Site ID, 解析SharePoint链接. |
| sharepoint_create_listA | Create a SharePoint list. This administrative write requires delegated Sites.Manage.All. Chinese intents / 中文意图: 创建SharePoint列表, 新建项目清单, 创建站点List. |
| sharepoint_update_listA | Update the name or description of a SharePoint list. Requires Sites.Manage.All. Chinese intents / 中文意图: 修改SharePoint列表, 重命名站点清单, 更新列表描述. |
| sharepoint_delete_listB | Delete an entire SharePoint list. Requires delegated Sites.Manage.All. Chinese intents / 中文意图: 删除SharePoint列表, 删除站点清单, 移除整个List. |
| sharepoint_list_columnsB | List column definitions and internal names for a SharePoint list. Chinese intents / 中文意图: 查看SharePoint列, 查看列表字段定义, 获取列内部名称. |
| sharepoint_create_columnB | Create a SharePoint list column from a Microsoft Graph columnDefinition. Requires Sites.Manage.All. Chinese intents / 中文意图: 创建SharePoint列, 给列表添加字段, 新增清单列. |
| sharepoint_update_columnA | Update writable properties on a SharePoint list column. Requires Sites.Manage.All. Chinese intents / 中文意图: 修改SharePoint列, 更新列表字段, 调整清单列配置. |
| sharepoint_delete_columnB | Delete a custom SharePoint list column. Requires Sites.Manage.All. Chinese intents / 中文意图: 删除SharePoint列, 移除列表字段, 删除清单列. |
| sharepoint_list_item_deltaA | Read newly created, updated, or deleted SharePoint list items and return nextLink or deltaLink state. Chinese intents / 中文意图: 查看SharePoint列表变更, 增量同步清单, 获取列表Delta. |
| sharepoint_download_fileA | Download a document-library file as base64. The MCP response is limited to 10 MB. Chinese intents / 中文意图: 下载SharePoint文件, 读取文档库文件内容, 获取团队文件base64. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
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/mdwsk88/ms-365-21v-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server