@assistant-ui/mcp-docs-server 0.1.10 → 0.1.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.
Files changed (26) hide show
  1. package/.docs/organized/code-examples/with-ai-sdk-v5.md +23 -23
  2. package/.docs/organized/code-examples/with-assistant-transport.md +26 -26
  3. package/.docs/organized/code-examples/with-cloud.md +19 -19
  4. package/.docs/organized/code-examples/with-external-store.md +16 -16
  5. package/.docs/organized/code-examples/with-ffmpeg.md +20 -20
  6. package/.docs/organized/code-examples/with-langgraph.md +20 -20
  7. package/.docs/organized/code-examples/with-parent-id-grouping.md +16 -16
  8. package/.docs/organized/code-examples/with-react-hook-form.md +25 -25
  9. package/.docs/raw/docs/cloud/persistence/langgraph.mdx +22 -2
  10. package/.docs/raw/docs/getting-started.mdx +544 -153
  11. package/.docs/raw/docs/guides/Attachments.mdx +21 -0
  12. package/.docs/raw/docs/runtimes/ai-sdk/use-chat.mdx +2 -2
  13. package/.docs/raw/docs/runtimes/custom/custom-thread-list.mdx +218 -0
  14. package/.docs/raw/docs/runtimes/custom/external-store.mdx +31 -24
  15. package/.docs/raw/docs/runtimes/mastra/separate-server-integration.mdx +8 -3
  16. package/.docs/raw/docs/runtimes/pick-a-runtime.mdx +1 -1
  17. package/.docs/raw/docs/ui/AssistantModal.mdx +21 -0
  18. package/.docs/raw/docs/ui/AssistantSidebar.mdx +21 -0
  19. package/.docs/raw/docs/ui/Attachment.mdx +21 -0
  20. package/.docs/raw/docs/ui/Markdown.mdx +22 -1
  21. package/.docs/raw/docs/ui/Mermaid.mdx +22 -1
  22. package/.docs/raw/docs/ui/SyntaxHighlighting.mdx +43 -2
  23. package/.docs/raw/docs/ui/Thread.mdx +9 -3
  24. package/.docs/raw/docs/ui/ThreadList.mdx +48 -2
  25. package/.docs/raw/docs/ui/ToolFallback.mdx +21 -0
  26. package/package.json +6 -6
@@ -214,10 +214,30 @@ export function MyRuntimeProvider({
214
214
 
215
215
  Install the thread list component:
216
216
 
217
- ```bash
218
- npx assistant-ui add thread-list
217
+ <Tabs items={["assistant-ui", "shadcn (namespace)", "shadcn"]}>
218
+ <Tab>
219
+
220
+ ```sh
221
+ npx assistant-ui@latest add thread-list
222
+ ```
223
+
224
+ </Tab>
225
+ <Tab>
226
+
227
+ ```sh
228
+ npx shadcn@latest add @assistant-ui/thread-list
219
229
  ```
220
230
 
231
+ </Tab>
232
+ <Tab>
233
+
234
+ ```sh
235
+ npx shadcn@latest add "https://r.assistant-ui.com/thread-list"
236
+ ```
237
+
238
+ </Tab>
239
+ </Tabs>
240
+
221
241
  Then add it to your application layout:
222
242
 
223
243
  ```tsx title="app/chat/page.tsx"