@atlisp/mcp 1.2.0 → 1.3.1
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 +2 -2
- package/dist/atlisp-mcp.js +2314 -0
- package/dist/cad-worker.js +221 -0
- package/package.json +11 -6
- package/src/atlisp-mcp.js +0 -630
- package/src/cad-worker.js +0 -498
- package/src/cad.js +0 -271
- package/src/config.js +0 -50
- package/src/constants.js +0 -23
- package/src/errors.js +0 -55
- package/src/handlers/cad-handlers.js +0 -110
- package/src/handlers/function-handlers.js +0 -107
- package/src/handlers/package-handlers.js +0 -66
- package/src/handlers/prompt-handlers.js +0 -268
- package/src/handlers/resource-handlers.js +0 -364
- package/src/logger.js +0 -30
- package/src/session-manager.js +0 -89
- package/src/session-transport.js +0 -89
- package/src/sse-session-manager.js +0 -133
- package/src/sse-session.js +0 -314
- package/src/subscription-manager.js +0 -52
package/README.md
CHANGED
|
@@ -253,8 +253,8 @@ curl http://localhost:8110/health
|
|
|
253
253
|
| `bring_to_front` | 切换 CAD 到前台 | 无 |
|
|
254
254
|
| `install_atlisp` | 安装 @lisp | 无 |
|
|
255
255
|
| `get_function_usage` | 获取函数用法 | `name`: 函数名 |
|
|
256
|
-
| `
|
|
257
|
-
| `
|
|
256
|
+
| `list_symbols` | 列出所有符号(函数和变量) | 无 |
|
|
257
|
+
| `import_funlib` | 从网络导入函数库数据到 AI Agent | `format`: json/list |
|
|
258
258
|
|
|
259
259
|
### MCP 方法
|
|
260
260
|
|