@assistant-ui/mcp-docs-server 0.1.8 → 0.1.9
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/.docs/organized/code-examples/with-ai-sdk-v5.md +21 -14
- package/.docs/organized/code-examples/with-assistant-transport.md +1599 -0
- package/.docs/organized/code-examples/with-cloud.md +9 -9
- package/.docs/organized/code-examples/with-external-store.md +7 -7
- package/.docs/organized/code-examples/with-ffmpeg.md +14 -13
- package/.docs/organized/code-examples/with-langgraph.md +17 -9
- package/.docs/organized/code-examples/with-parent-id-grouping.md +7 -7
- package/.docs/organized/code-examples/with-react-hook-form.md +14 -13
- package/.docs/raw/docs/copilots/assistant-frame.mdx +18 -16
- package/.docs/raw/docs/devtools.mdx +51 -0
- package/.docs/raw/docs/runtimes/ai-sdk/use-chat.mdx +2 -2
- package/.docs/raw/docs/runtimes/custom/local.mdx +1 -1
- package/.docs/raw/docs/runtimes/mastra/full-stack-integration.mdx +6 -5
- package/.docs/raw/docs/runtimes/mastra/overview.mdx +3 -3
- package/.docs/raw/docs/runtimes/mastra/separate-server-integration.mdx +13 -13
- package/package.json +6 -6
|
@@ -1002,6 +1002,13 @@ export { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider };
|
|
|
1002
1002
|
|
|
1003
1003
|
```
|
|
1004
1004
|
|
|
1005
|
+
## eslint.config.ts
|
|
1006
|
+
|
|
1007
|
+
```typescript
|
|
1008
|
+
export { default } from "@assistant-ui/x-buildutils/eslint";
|
|
1009
|
+
|
|
1010
|
+
```
|
|
1011
|
+
|
|
1005
1012
|
## lib/utils.ts
|
|
1006
1013
|
|
|
1007
1014
|
```typescript
|
|
@@ -1035,42 +1042,42 @@ export default nextConfig;
|
|
|
1035
1042
|
"version": "0.0.0",
|
|
1036
1043
|
"type": "module",
|
|
1037
1044
|
"dependencies": {
|
|
1038
|
-
"@ai-sdk/openai": "^2.0.
|
|
1039
|
-
"@ai-sdk/react": "^2.0.
|
|
1045
|
+
"@ai-sdk/openai": "^2.0.38",
|
|
1046
|
+
"@ai-sdk/react": "^2.0.56",
|
|
1040
1047
|
"@assistant-ui/react": "workspace:^",
|
|
1041
1048
|
"@assistant-ui/react-ai-sdk": "workspace:*",
|
|
1042
1049
|
"@assistant-ui/react-markdown": "workspace:^",
|
|
1043
1050
|
"@radix-ui/react-slot": "^1.2.3",
|
|
1044
1051
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
1045
|
-
"@tailwindcss/postcss": "^4.1.
|
|
1046
|
-
"ai": "^5.0.
|
|
1052
|
+
"@tailwindcss/postcss": "^4.1.13",
|
|
1053
|
+
"ai": "^5.0.56",
|
|
1047
1054
|
"class-variance-authority": "^0.7.1",
|
|
1048
1055
|
"clsx": "^2.1.1",
|
|
1049
|
-
"lucide-react": "^0.
|
|
1050
|
-
"next": "15.4
|
|
1056
|
+
"lucide-react": "^0.544.0",
|
|
1057
|
+
"next": "15.5.4",
|
|
1051
1058
|
"postcss": "^8.5.6",
|
|
1052
1059
|
"react": "19.1.1",
|
|
1053
1060
|
"react-dom": "19.1.1",
|
|
1054
1061
|
"remark-gfm": "^4.0.1",
|
|
1055
1062
|
"tailwind-merge": "^3.3.1",
|
|
1056
|
-
"tailwindcss": "^4.1.
|
|
1057
|
-
"zod": "^4.
|
|
1063
|
+
"tailwindcss": "^4.1.13",
|
|
1064
|
+
"zod": "^4.1.11"
|
|
1058
1065
|
},
|
|
1059
1066
|
"devDependencies": {
|
|
1060
1067
|
"@assistant-ui/x-buildutils": "workspace:*",
|
|
1061
|
-
"@types/node": "^24.
|
|
1062
|
-
"@types/react": "^19.1.
|
|
1063
|
-
"@types/react-dom": "^19.1.
|
|
1068
|
+
"@types/node": "^24.5.2",
|
|
1069
|
+
"@types/react": "^19.1.15",
|
|
1070
|
+
"@types/react-dom": "^19.1.9",
|
|
1064
1071
|
"eslint": "^9",
|
|
1065
|
-
"eslint-config-next": "15.4
|
|
1066
|
-
"tw-animate-css": "^1.
|
|
1072
|
+
"eslint-config-next": "15.5.4",
|
|
1073
|
+
"tw-animate-css": "^1.4.0",
|
|
1067
1074
|
"typescript": "^5.9.2"
|
|
1068
1075
|
},
|
|
1069
1076
|
"scripts": {
|
|
1070
1077
|
"dev": "next dev",
|
|
1071
1078
|
"build": "next build",
|
|
1072
1079
|
"start": "next start",
|
|
1073
|
-
"lint": "
|
|
1080
|
+
"lint": "eslint ."
|
|
1074
1081
|
}
|
|
1075
1082
|
}
|
|
1076
1083
|
|