@assistant-ui/mcp-docs-server 0.1.14 → 0.1.15

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.
@@ -189,7 +189,7 @@ export const sendMessage = async (params: {
189
189
  // ---cut---
190
190
  "use client";
191
191
 
192
- import { Thread } from "@/components/assistant-ui";
192
+ import { Thread } from "@/components/assistant-ui/thread";
193
193
  import { AssistantRuntimeProvider } from "@assistant-ui/react";
194
194
  import { useLangGraphRuntime } from "@assistant-ui/react-langgraph";
195
195
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@assistant-ui/mcp-docs-server",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "description": "MCP server for assistant-ui documentation and examples",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -8,8 +8,8 @@
8
8
  "assistant-ui-mcp": "./dist/stdio.js"
9
9
  },
10
10
  "dependencies": {
11
- "@modelcontextprotocol/sdk": "^1.22.0",
12
- "zod": "^4.1.12",
11
+ "@modelcontextprotocol/sdk": "^1.23.0",
12
+ "zod": "^4.1.13",
13
13
  "gray-matter": "^4.0.3",
14
14
  "cross-env": "^10.1.0"
15
15
  },
@@ -18,7 +18,7 @@
18
18
  "tsup": "^8.5.1",
19
19
  "tsx": "^4.20.6",
20
20
  "typescript": "^5.9.3",
21
- "vitest": "^4.0.10"
21
+ "vitest": "^4.0.14"
22
22
  },
23
23
  "files": [
24
24
  "dist",
@@ -26,7 +26,15 @@
26
26
  "README.md"
27
27
  ],
28
28
  "publishConfig": {
29
- "access": "public"
29
+ "access": "public",
30
+ "provenance": true
31
+ },
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "https://github.com/assistant-ui/assistant-ui/tree/main/packages/mcp-docs-server"
35
+ },
36
+ "bugs": {
37
+ "url": "https://github.com/assistant-ui/assistant-ui/issues"
30
38
  },
31
39
  "scripts": {
32
40
  "clean": "tsx scripts/clean.mts",