{
  "markdown": "# Lexiang MCP Server\n\n<p align=\"center\">\n  <a href=\"#中文\">中文</a> | <a href=\"#english\">English</a>\n</p>\n\n---\n\n<a name=\"中文\"></a>\n## 中文\n\n### 关于乐享\n\n[腾讯乐享](https://lexiang.tencent.com/?event_type=link_exchange&event_channel=mcp&event_detail=github) 是**更懂企业的 AI 知识库**，通过 AI 技术激活团队私有知识价值，让知识触手可及。\n\n**核心能力：**\n\n- 🤖 **AI 智能问答**：锁定专属知识域，通过 AI 问答快速找下文\n- 📚 **多格式全兼容**：支持文档、音视频、表格、图片等百余种格式\n- 🔗 **多源知识入库**：聚合微信文件、微信公众号文章、腾讯会议、腾讯文档及本地文件入库\n- 👥 **轻松协作**：多人在线编辑，任务即时下发，知识与业务紧密关联\n- 🔒 **安全可控**：四级权限管控、防泄露水印、操作可追溯\n\n### 什么是 Lexiang MCP\n\nLexiang MCP 是乐享提供的 [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) 服务，让 AI 助手能够直接与您的乐享知识库进行交互。\n\n通过 Lexiang MCP，您可以在 AI 对话中：\n\n- 🔍 **搜索知识**：在知识库中搜索文档和内容\n- 📖 **阅读内容**：获取文档、页面的详细内容\n- ✏️ **创建编辑**：创建新页面、编辑文档内容\n- 📁 **管理组织**：移动、重命名、组织知识结构\n- 📎 **文件操作**：上传、下载文件\n- 🎥 **会议导入**：将腾讯会议录制导入知识库\n\n### 快速开始\n\n#### 认证方式说明\n\nMCP 服务支持 **2 种认证方式**：\n\n1. **方式 1：OAuth 登录（推荐）** ⭐\n   - 不需要提前创建 token，直接点击\"在 Cursor 中打开\"或\"在 VS Code 中打开\"即可\n   - MCP 客户端将重定向到登录页面进行身份验证\n   - 支持浏览器自动跳转登录流程\n   - 适用于：大多数场景，最简便快捷\n\n2. **方式 2：手动配置 Access Token（备选）**\n   - 在\"会话管理\"标签页创建会话，获取 `access_token`\n   - 在 MCP 接入地址中通过 `access_token` URL 参数传递令牌\n   - 适用于：需要完全控制认证过程或离线场景\n\n> **推荐方案**：使用方式 1（OAuth 登录），无需创建会话，最快最简便。\n\n#### 快速开始（推荐 OAuth 方式）\n\n**最快的方式（只需 2 步）：**\n\n1. 登录乐享后，访问 [https://lexiangla.com/mcp](https://lexiangla.com/mcp)\n2. 点击页面上的 **\"在 Cursor 中打开\"** 或 **\"在 VS Code 中打开\"** 按钮\n3. 在跳转的登录页面中完成身份验证\n\n配置会自动导入，无需手动复制粘贴！\n\n#### 手动配置方式（Token 方式）\n\n如果需要手动配置，请按以下步骤操作：\n\n1. 访问 [https://lexiangla.com/mcp](https://lexiangla.com/mcp)\n2. 切换到 **\"会话管理\"** 标签页\n3. 点击 **\"新建会话\"** 获得 `access_token`\n4. 根据您的客户端类型，选择对应的配置方式：\n\n---\n\n##### Cursor / Cline / CodeBuddy 配置\n\n编辑配置文件（支持 Remote URL OAuth）：\n\n**配置文件位置：**\n- Cursor：`.cursor/mcp.json`\n- Cline：`.cline/mcp.json`  \n- CodeBuddy：`.codebuddy/mcp.json` 或 `~/.codebuddy/mcp.json`\n\n```json\n{\n  \"mcpServers\": {\n    \"lexiang\": {\n      \"url\": \"https://mcp.lexiang-app.com/mcp?company_from={您的乐享code}&access_token={您的access_token}\"\n    }\n  }\n}\n```\n\n---\n\n##### VS Code 配置 (settings.json)\n\n编辑 VS Code 的 `settings.json`：\n\n```json\n{\n  \"mcp\": {\n    \"servers\": {\n      \"lexiang\": {\n        \"url\": \"https://mcp.lexiang-app.com/mcp?company_from={您的乐享code}&access_token={您的access_token}\"\n      }\n    }\n  }\n}\n```\n\n---\n\n##### CodeBuddy 插件版 / Codebuddy Code 配置（需 npx）\n\n> ⚠️ CodeBuddy 插件版和 Codebuddy Code 暂不支持 Remote URL OAuth 方式，需要通过 `npx mcp-remote` 桥接。请确保已安装 Node.js 环境。\n\n```json\n{\n  \"mcpServers\": {\n    \"lexiang\": {\n      \"command\": \"npx\",\n      \"args\": [\n        \"-y\",\n        \"mcp-remote\",\n        \"https://mcp.lexiang-app.com/mcp?company_from={您的乐享code}&access_token={您的access_token}\"\n      ]\n    }\n  }\n}\n```\n\n---\n\n> **说明**：将 `{您的乐享code}` 和 `{您的access_token}` 替换为配置页面中显示的实际值。\n\n### 高级配置：工具预设 (Preset)\n\n通过在配置时选择不同的 `preset` 参数，控制 AI 助手可访问的工具类别。不指定时返回所有工具。\n\n#### 支持的 Preset 预设\n\n| Preset | 说明 |\n|--------|------|\n| `knowledge` | 完整知识库工具集（条目、知识库、文件、文档编辑、团队等） |\n| `knowledge.entry` | 知识条目管理（创建、编辑、删除、搜索条目） |\n| `knowledge.space` | 知识库管理（创建知识库、列表管理） |\n| `knowledge.file` | 文件上传下载（支持 PDF、Word、图片等） |\n| `knowledge.block` | 在线文档编辑（创建、更新、删除块结构） |\n| `teamspace.team` | 团队管理（获取团队信息） |\n\n#### 元工具说明\n\n当不指定 `preset` 时，返回以下 4 个元工具用于动态发现和调用其他工具：\n\n- `list_tool_categories` - 列出所有工具分类\n- `search_tools` - 搜索工具\n- `get_tool_schema` - 获取工具参数定义\n- `call_tool` - 调用指定工具\n\n#### 如何使用\n\n1. 使用 OAuth 方式时，直接点击\"在 Cursor/VS Code 中打开\"即可使用所有工具\n2. 如需限制工具范围，可选择预设后复制配置\n3. 配置将自动包含选定的 `preset` 查询参数\n\n**示例**：仅启用知识条目管理工具\n\n```json\n{\n  \"mcpServers\": {\n    \"lexiang\": {\n      \"url\": \"https://mcp.lexiang-app.com/mcp?company_from={您的乐享code}&preset=knowledge.entry\"\n    }\n  }\n}\n```\n\n> 💡 选择合适的预设可以让 AI 助手工具列表更简洁，加快响应速度。\n\n### 使用示例\n\n配置完成后，您可以直接在 AI 对话中操作乐享知识库：\n\n#### 搜索知识\n\n```\n帮我搜索知识库中关于\"产品规划\"的文档\n```\n\n#### 创建页面\n\n```\n在\"团队文档\"空间中创建一个名为\"Q1 会议纪要\"的新页面\n```\n\n#### 更新版本日志\n\n```\n将本次更新，提交 github 仓库，同步更新到知识库版本更新日志中\n```\n\n> AI 会自动定位文档位置，在顶部插入新版本内容，历史记录原封不动。\n\n#### 生成 API 文档\n\n```\n在同目录下，生成对应 API 文档，方便让其他系统调用\n```\n\n> AI 会分析代码中的接口结构，自动在乐享知识库中创建格式规范的 API 文档。\n\n#### 导入会议录制\n\n```\n把会议号 123456789 的腾讯会议录制导入到知识库\n```\n\n### 为什么选择乐享知识库？\n\n相比本地 Markdown 文件或其他在线文档工具，乐享知识库有几个独特优势：\n\n1. **文档块（Block）级别的精准操作**\n   - 本地文件只能全量覆盖，大部分在线文档只支持页面级操作\n   - 乐享的 Block 设计让 AI 可以像\"外科手术\"一样精准更新文档任意位置\n   - 对于版本日志、API 文档这种增量更新场景，这是刚需\n\n2. **严肃场景下的文档审批**\n   - 支持文档审批流，AI 生成的内容可先进入待审核状态\n   - 经负责人确认后再正式发布，安全兜底\n\n3. **一键分享，扩大影响力**\n   - 便捷的文档共享，一个链接就能分享给客户、合作伙伴\n   - 访问记录一目了然，支持点赞和评论\n\n4. **AI 可二次消费的知识**\n   - 文档不再是静态说明书，而是可被 AI 调用的\"知识接口\"\n   - 在 CodeBuddy 中通过 MCP 直接读取 API 文档，自动完成接口集成\n\n### 可用工具列表\n\nLexiang MCP 提供 **38 个工具**，覆盖以下场景：\n\n| 分类 | 工具数 | 说明 |\n|-----|-------|------|\n| 知识条目操作 | 11 | 创建、查看、编辑、移动、搜索知识条目 |\n| 文档块操作 | 8 | 在线文档的块级编辑操作 |\n| 知识库操作 | 3 | 创建和管理知识库 |\n| 文件操作 | 5 | 文件上传、下载、外链导入 |\n| 搜索操作 | 2 | 关键词搜索和语义搜索 |\n| 团队操作 | 3 | 获取团队信息 |\n| 连接器 | 6 | 腾讯会议、iWiki 等外部内容导入 |\n\n<details>\n<summary>📋 点击查看完整工具列表</summary>\n\n#### 知识条目操作\n\n| 工具 | 描述 |\n|------|------|\n| `knowledge_create_entry` | 创建知识条目（页面/文件夹） |\n| `knowledge_describe_entry` | 获取知识条目详情 |\n| `knowledge_describe_ai_parse_content` | 获取 AI 可解析内容 |\n| `knowledge_diff_entry_content` | 对比内容版本差异 |\n| `knowledge_import_content` | 导入 markdown/html 内容 |\n| `knowledge_list_children` | 列出子条目 |\n| `knowledge_list_latest_entries` | 获取最近更新的条目 |\n| `knowledge_list_parents` | 获取面包屑路径 |\n| `knowledge_move_entry` | 移动条目 |\n| `knowledge_rename_entry` | 重命名条目 |\n| `knowledge_search_udf_entries` | 搜索条目 |\n\n#### 文档块操作\n\n| 工具 | 描述 |\n|------|------|\n| `block_create_block_descendant` | 创建子块 |\n| `block_delete_block` | 删除块 |\n| `block_delete_block_children` | 删除子块 |\n| `block_describe_block` | 获取块详情 |\n| `block_list_block_children` | 列出子块 |\n| `block_move_blocks` | 移动块 |\n| `block_update_block` | 更新块内容 |\n| `block_update_blocks` | 批量更新块 |\n\n#### 知识库操作\n\n| 工具 | 描述 |\n|------|------|\n| `knowledge_create_space` | 创建知识库 |\n| `knowledge_describe_space` | 获取知识库详情 |\n| `knowledge_list_spaces` | 列出知识库 |\n\n#### 文件操作\n\n| 工具 | 描述 |\n|------|------|\n| `knowledge_apply_upload` | 申请上传凭证 |\n| `knowledge_commit_upload` | 确认上传完成 |\n| `knowledge_create_hyperlink` | 导入外部链接 |\n| `knowledge_describe_file` | 获取文件信息 |\n| `knowledge_download_file` | 获取下载地址 |\n\n#### 搜索操作\n\n| 工具 | 描述 |\n|------|------|\n| `search_kb_search` | 关键词搜索 |\n| `search_kb_embedding_search` | 语义向量搜索 |\n\n#### 团队操作\n\n| 工具 | 描述 |\n|------|------|\n| `teamspace_describe_team` | 获取团队详情 |\n| `teamspace_list_some_teams` | 批量获取团队 |\n| `teamspace_list_teams` | 列出可访问团队 |\n\n#### 连接器\n\n| 工具 | 描述 |\n|------|------|\n| `connector_import_iwiki_doc` | 导入 iWiki 文档 |\n| `connector_describe_tx_meeting_record` | 获取会议录制详情 |\n| `connector_import_tx_meeting_record` | 导入会议录制 |\n| `connector_list_tx_meeting_records` | 列出会议录制 |\n| `connector_reload_tx_meeting_record` | 重新导入录制 |\n| `connector_search_tx_meeting_records` | 搜索会议录制 |\n\n</details>\n\n### 常见问题\n\n**问：出现\"需要授权\"错误怎么办？**\n\n答：\n1. 确保已从 [https://lexiangla.com/mcp](https://lexiangla.com/mcp) 获取正确的配置信息\n2. 在 CodeBuddy 中点击「刷新」图标，完成 OAuth 授权\n3. 检查 URL 中的 `company_from` 参数是否正确\n\n**问：找不到我的知识库？**\n\n答：MCP 只能访问您有权限的知识库，请在乐享中检查您的权限设置。\n\n**问：文件上传失败？**\n\n答：文件上传需要 3 步：\n1. 调用 `apply_upload` 获取上传地址\n2. HTTP PUT 上传文件（在 MCP 外部完成）\n3. 调用 `commit_upload` 确认\n\n**问：AI 更新文档时创建了新文档而不是更新原文档？**\n\n答：可以明确告诉 AI：\"在原文档上进行更新，而不是生成新文档\"，AI 会使用块级操作精准更新原文档。\n\n### 相关链接\n\n- [乐享官网](https://lexiang.tencent.com/?event_type=link_exchange&event_channel=mcp&event_detail=github)\n- [乐享 MCP 配置页面](https://lexiangla.com/mcp)\n- [MCP 协议规范](https://spec.modelcontextprotocol.io/)\n\n---\n\n<a name=\"english\"></a>\n## English\n\n### About Lexiang\n\n[Tencent Lexiang](https://lexiang.tencent.com/?event_type=link_exchange&event_channel=mcp&event_detail=github) is an **AI-powered enterprise knowledge base** that activates the value of team knowledge through AI technology, making knowledge accessible at your fingertips.\n\n**Core Capabilities:**\n\n- 🤖 **AI Q&A**: Lock into your dedicated knowledge domain and quickly find business context through AI\n- 📚 **Multi-format Support**: Supports 100+ formats including documents, audio/video, spreadsheets, and images\n- 🔗 **Multi-source Integration**: Aggregate WeChat files, WeChat media platform articles, Tencent Meeting, Tencent Docs, and local files\n- 👥 **Easy Collaboration**: Real-time co-editing, instant task assignment, seamlessly integrated with business workflows\n- 🔒 **Secure & Controllable**: Four-level access control, anti-leak watermarks, auditable operations\n\n### What is Lexiang MCP\n\nLexiang MCP is a [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) service provided by Lexiang, enabling AI assistants to interact directly with your Lexiang knowledge bases.\n\nWith Lexiang MCP, you can perform the following in AI conversations:\n\n- 🔍 **Search Knowledge**: Search documents and content in your knowledge bases\n- 📖 **Read Content**: Get detailed content of documents and pages\n- ✏️ **Create & Edit**: Create new pages and edit document content\n- 📁 **Organize**: Move, rename, and organize knowledge structure\n- 📎 **File Operations**: Upload and download files\n- 🎥 **Import Meetings**: Import Tencent Meeting recordings to knowledge bases\n\n### Quick Start\n\n#### Authentication Methods\n\nMCP service supports **2 authentication methods**:\n\n1. **Method 1: OAuth Login (Recommended)** ⭐\n   - No need to create a token in advance, just click \"Open in Cursor\" or \"Open in VS Code\"\n   - MCP client will redirect to the login page for authentication\n   - Supports automatic browser redirect login flow\n   - Best for: Most scenarios, simplest and fastest\n\n2. **Method 2: Manual Access Token Configuration (Alternative)**\n   - Create a session in the \"Session Management\" tab to get an `access_token`\n   - Pass the token via `access_token` URL parameter in the MCP endpoint\n   - Best for: Scenarios requiring full control over authentication or offline use\n\n> **Recommendation**: Use Method 1 (OAuth Login) - no session creation needed, fastest and simplest.\n\n#### Quick Start (Recommended OAuth Method)\n\n**Fastest way (only 2 steps):**\n\n1. Log in to Lexiang, then visit [https://lexiangla.com/mcp](https://lexiangla.com/mcp)\n2. Click **\"Open in Cursor\"** or **\"Open in VS Code\"** button on the page\n3. Complete authentication in the redirected login page\n\nConfiguration will be imported automatically, no manual copy-paste needed!\n\n#### Manual Configuration (Token Method)\n\nIf you need to configure manually, follow these steps:\n\n1. Visit [https://lexiangla.com/mcp](https://lexiangla.com/mcp)\n2. Switch to the **\"Session Management\"** tab\n3. Click **\"New Session\"** to get your `access_token`\n4. Choose the configuration method based on your client type:\n\n---\n\n##### Cursor / Cline / CodeBuddy Configuration\n\nEdit configuration file (supports Remote URL OAuth):\n\n**Configuration file locations:**\n- Cursor: `.cursor/mcp.json`\n- Cline: `.cline/mcp.json`\n- CodeBuddy: `.codebuddy/mcp.json` or `~/.codebuddy/mcp.json`\n\n```json\n{\n  \"mcpServers\": {\n    \"lexiang\": {\n      \"url\": \"https://mcp.lexiang-app.com/mcp?company_from={your_lexiang_code}&access_token={your_access_token}\"\n    }\n  }\n}\n```\n\n---\n\n##### VS Code Configuration (settings.json)\n\nEdit VS Code's `settings.json`:\n\n```json\n{\n  \"mcp\": {\n    \"servers\": {\n      \"lexiang\": {\n        \"url\": \"https://mcp.lexiang-app.com/mcp?company_from={your_lexiang_code}&access_token={your_access_token}\"\n      }\n    }\n  }\n}\n```\n\n---\n\n##### CodeBuddy Plugin / Codebuddy Code Configuration (requires npx)\n\n> ⚠️ CodeBuddy Plugin and Codebuddy Code do not support Remote URL OAuth yet. You need to use `npx mcp-remote` as a bridge. Make sure Node.js is installed.\n\n```json\n{\n  \"mcpServers\": {\n    \"lexiang\": {\n      \"command\": \"npx\",\n      \"args\": [\n        \"-y\",\n        \"mcp-remote\",\n        \"https://mcp.lexiang-app.com/mcp?company_from={your_lexiang_code}&access_token={your_access_token}\"\n      ]\n    }\n  }\n}\n```\n\n---\n\n> **Note**: Replace `{your_lexiang_code}` and `{your_access_token}` with the actual values shown on the configuration page.\n\n### Advanced Configuration: Tool Presets\n\nControl which tool categories the AI assistant can access by selecting different `preset` parameters. All tools are returned when not specified.\n\n#### Supported Presets\n\n| Preset | Description |\n|--------|-------------|\n| `knowledge` | Complete knowledge base toolset (entries, spaces, files, document editing, teams, etc.) |\n| `knowledge.entry` | Knowledge entry management (create, edit, delete, search entries) |\n| `knowledge.space` | Knowledge space management (create spaces, list management) |\n| `knowledge.file` | File upload/download (supports PDF, Word, images, etc.) |\n| `knowledge.block` | Online document editing (create, update, delete block structures) |\n| `teamspace.team` | Team management (get team information) |\n\n#### Meta Tools\n\nWhen `preset` is not specified, the following 4 meta tools are returned for dynamic discovery and invocation:\n\n- `list_tool_categories` - List all tool categories\n- `search_tools` - Search for tools\n- `get_tool_schema` - Get tool parameter definitions\n- `call_tool` - Call a specific tool\n\n#### How to Use\n\n1. With OAuth method, click \"Open in Cursor/VS Code\" to access all tools\n2. To limit tool scope, select a preset before copying the configuration\n3. The configuration will automatically include the selected `preset` query parameter\n\n**Example**: Enable only knowledge entry management tools\n\n```json\n{\n  \"mcpServers\": {\n    \"lexiang\": {\n      \"url\": \"https://mcp.lexiang-app.com/mcp?company_from={your_lexiang_code}&preset=knowledge.entry\"\n    }\n  }\n}\n```\n\n> 💡 Choosing the right preset makes the AI assistant's tool list cleaner and improves response speed.\n\n### Usage Examples\n\nAfter configuration, you can interact with your Lexiang knowledge base directly in AI conversations:\n\n#### Search Knowledge\n\n```\nSearch for documents about \"product planning\" in my knowledge base\n```\n\n#### Create Page\n\n```\nCreate a new page titled \"Q1 Meeting Notes\" in the \"Team Documents\" space\n```\n\n#### Update Version Log\n\n```\nCommit this update to github and sync to the version changelog in the knowledge base\n```\n\n> AI will automatically locate the document position and insert new version content at the top, keeping historical records intact.\n\n#### Generate API Documentation\n\n```\nGenerate API documentation in the same directory for other systems to call\n```\n\n> AI will analyze the interface structure in the code and automatically create well-formatted API documentation in Lexiang.\n\n#### Import Meeting Recording\n\n```\nImport the Tencent Meeting recording with meeting ID 123456789 to my knowledge base\n```\n\n### Why Choose Lexiang Knowledge Base?\n\nCompared to local Markdown files or other online document tools, Lexiang offers unique advantages:\n\n1. **Block-level Precision Operations**\n   - Local files can only be fully overwritten; most online docs only support page-level operations\n   - Lexiang's Block design allows AI to precisely update any position in a document like \"surgery\"\n   - Essential for incremental update scenarios like version logs and API documentation\n\n2. **Document Approval for Serious Scenarios**\n   - Supports document approval workflows; AI-generated content can enter pending review status\n   - Officially published only after responsible person confirmation\n\n3. **One-click Sharing**\n   - Easy document sharing with a single link to customers and partners\n   - Clear access records with like and comment features\n\n4. **AI-consumable Knowledge**\n   - Documents are no longer static manuals but \"knowledge interfaces\" callable by AI\n   - Read API docs via MCP in CodeBuddy to automatically complete interface integration\n\n### Available Tools\n\nLexiang MCP provides **38 tools** covering the following scenarios:\n\n| Category | Count | Description |\n|----------|-------|-------------|\n| Knowledge Entry Operations | 11 | Create, view, edit, move, search knowledge entries |\n| Document Block Operations | 8 | Block-level editing for online documents |\n| Knowledge Space Operations | 3 | Create and manage knowledge spaces |\n| File Operations | 5 | File upload, download, external link import |\n| Search Operations | 2 | Keyword search and semantic search |\n| Team Operations | 3 | Get team information |\n| Connectors | 6 | Import from Tencent Meeting, iWiki, etc. |\n\n<details>\n<summary>📋 Click to view full tool list</summary>\n\n#### Knowledge Entry Operations\n\n| Tool | Description |\n|------|-------------|\n| `knowledge_create_entry` | Create knowledge entries (page/folder) |\n| `knowledge_describe_entry` | Get knowledge entry details |\n| `knowledge_describe_ai_parse_content` | Get AI-parseable content |\n| `knowledge_diff_entry_content` | Compare content versions |\n| `knowledge_import_content` | Import markdown/html content |\n| `knowledge_list_children` | List child entries |\n| `knowledge_list_latest_entries` | Get recently updated entries |\n| `knowledge_list_parents` | Get breadcrumb path |\n| `knowledge_move_entry` | Move entry |\n| `knowledge_rename_entry` | Rename entry |\n| `knowledge_search_udf_entries` | Search entries |\n\n#### Document Block Operations\n\n| Tool | Description |\n|------|-------------|\n| `block_create_block_descendant` | Create child blocks |\n| `block_delete_block` | Delete block |\n| `block_delete_block_children` | Delete child blocks |\n| `block_describe_block` | Get block details |\n| `block_list_block_children` | List child blocks |\n| `block_move_blocks` | Move blocks |\n| `block_update_block` | Update block content |\n| `block_update_blocks` | Batch update blocks |\n\n#### Knowledge Space Operations\n\n| Tool | Description |\n|------|-------------|\n| `knowledge_create_space` | Create knowledge space |\n| `knowledge_describe_space` | Get space details |\n| `knowledge_list_spaces` | List spaces |\n\n#### File Operations\n\n| Tool | Description |\n|------|-------------|\n| `knowledge_apply_upload` | Request upload credentials |\n| `knowledge_commit_upload` | Confirm upload completion |\n| `knowledge_create_hyperlink` | Import external links |\n| `knowledge_describe_file` | Get file metadata |\n| `knowledge_download_file` | Get download URL |\n\n#### Search Operations\n\n| Tool | Description |\n|------|-------------|\n| `search_kb_search` | Keyword search |\n| `search_kb_embedding_search` | Semantic vector search |\n\n#### Team Operations\n\n| Tool | Description |\n|------|-------------|\n| `teamspace_describe_team` | Get team details |\n| `teamspace_list_some_teams` | Get multiple teams |\n| `teamspace_list_teams` | List accessible teams |\n\n#### Connectors\n\n| Tool | Description |\n|------|-------------|\n| `connector_import_iwiki_doc` | Import iWiki documents |\n| `connector_describe_tx_meeting_record` | Get meeting recording details |\n| `connector_import_tx_meeting_record` | Import meeting recording |\n| `connector_list_tx_meeting_records` | List meeting recordings |\n| `connector_reload_tx_meeting_record` | Re-import recording |\n| `connector_search_tx_meeting_records` | Search meeting recordings |\n\n</details>\n\n### FAQ\n\n**Q: I get \"Authorization Required\" errors**\n\nA:\n1. Make sure you obtained the correct configuration from [https://lexiangla.com/mcp](https://lexiangla.com/mcp)\n2. Click the \"Refresh\" icon in CodeBuddy to complete OAuth authorization\n3. Verify the `company_from` parameter in the URL is correct\n\n**Q: I can't find my knowledge spaces**\n\nA: MCP can only access spaces you have permission to. Check your permissions in Lexiang.\n\n**Q: File upload fails**\n\nA: File upload requires 3 steps:\n1. Call `apply_upload` to get upload URL\n2. HTTP PUT the file (done outside MCP)\n3. Call `commit_upload` to confirm\n\n**Q: AI created a new document instead of updating the original?**\n\nA: You can explicitly tell AI: \"Update the original document instead of creating a new one\", and AI will use block-level operations to precisely update the original document.\n\n### Related Links\n\n- [Lexiang Official Website](https://lexiang.tencent.com/?event_type=link_exchange&event_channel=mcp&event_detail=github)\n- [Lexiang MCP Configuration Page](https://lexiangla.com/mcp)\n- [MCP Protocol Specification](https://spec.modelcontextprotocol.io/)\n\n---\n\n## License / 许可证\n\nThis documentation is provided by Tencent Lexiang team. Usage is subject to Lexiang's terms of service.\n\n本文档由腾讯乐享团队提供，使用须遵守乐享服务条款。\n",
  "bytes": 19921,
  "sha": "f8f713044d7ad1415b09410280d2cbe50a9e8a7e6dcc0621392c078ec43a1156",
  "repo_slug": "tencent-lexiang/lexiang-mcp-server",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_tencent_lexiang_mcp_server_25267263/readme"
}