exploria-ui-mcp-server 2.3.9 → 2026.4.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -39,7 +39,7 @@ MCP Server 在项目架构中扮演着核心角色,作为 AI IDE 与 Exploria
39
39
 
40
40
  | 组件名称 | 功能描述 |
41
41
  | ------------------------ | ----------------------------------------------------------------------- |
42
- | **index.ts** | 入口文件,负责初始化服务、建立与 AI IDE 的连接、注册工具/资源/提示模块 |
42
+ | **index.ts** | 入口文件,负责初始化服务、建立与 AI IDE 的连接、注册工具/资源/提示模块 |
43
43
  | **McpServer** | 来自 @modelcontextprotocol/sdk 的核心 MCP 服务器实例,处理 MCP 协议通信 |
44
44
  | **StdioServerTransport** | 标准输入输出传输层,用于与 AI IDE 通信 |
45
45
  | **DocumentParser** | 文档解析器,负责解析和处理 Exploria UI 文档 |
@@ -261,13 +261,13 @@ vector[secondaryIndex] -= weight * 0.5
261
261
 
262
262
  #### 6.3.2 核心组件职责
263
263
 
264
- | 组件 | 职责 | 关键方法/属性 |
265
- | ------------------------ | ------------------------ | --------------------------------------------- |
266
- | **index.ts** | 入口模块,启动服务、管理连接 | `startServer()`, `setupEventHandlers()` |
267
- | **McpServer** | MCP SDK 核心实例 | 处理协议通信、注册工具/资源/提示 |
268
- | **StdioServerTransport** | 标准输入输出传输层 | 建立与 IDE 的管道连接 |
269
- | **KnowledgeService** | 向量数据库服务 | `searchKnowledge()`, `getComponentDetails()` |
270
- | **DocumentParser** | 文档解析器 | `initialize()`, `getStatus()` |
264
+ | 组件 | 职责 | 关键方法/属性 |
265
+ | ------------------------ | ---------------------------- | -------------------------------------------- |
266
+ | **index.ts** | 入口模块,启动服务、管理连接 | `startServer()`, `setupEventHandlers()` |
267
+ | **McpServer** | MCP SDK 核心实例 | 处理协议通信、注册工具/资源/提示 |
268
+ | **StdioServerTransport** | 标准输入输出传输层 | 建立与 IDE 的管道连接 |
269
+ | **KnowledgeService** | 向量数据库服务 | `searchKnowledge()`, `getComponentDetails()` |
270
+ | **DocumentParser** | 文档解析器 | `initialize()`, `getStatus()` |
271
271
 
272
272
  #### 6.3.3 服务启动流程
273
273