@mastra/mcp-docs-server 0.10.1-alpha.0 → 0.11.0

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 (110) hide show
  1. package/.docs/organized/changelogs/%40mastra%2Fagui.md +22 -0
  2. package/.docs/organized/changelogs/%40mastra%2Fclient-js.md +17 -17
  3. package/.docs/organized/changelogs/%40mastra%2Fcore.md +13 -13
  4. package/.docs/organized/changelogs/%40mastra%2Fdeployer-cloudflare.md +19 -19
  5. package/.docs/organized/changelogs/%40mastra%2Fdeployer-netlify.md +19 -19
  6. package/.docs/organized/changelogs/%40mastra%2Fdeployer-vercel.md +19 -19
  7. package/.docs/organized/changelogs/%40mastra%2Fdeployer.md +18 -18
  8. package/.docs/organized/changelogs/%40mastra%2Fevals.md +9 -9
  9. package/.docs/organized/changelogs/%40mastra%2Fmcp-docs-server.md +13 -13
  10. package/.docs/organized/changelogs/%40mastra%2Fmemory.md +9 -9
  11. package/.docs/organized/changelogs/%40mastra%2Fplayground-ui.md +30 -30
  12. package/.docs/organized/changelogs/%40mastra%2Fserver.md +16 -16
  13. package/.docs/organized/changelogs/create-mastra.md +22 -22
  14. package/.docs/organized/changelogs/mastra.md +37 -37
  15. package/.docs/raw/course/01-first-agent/01-introduction-to-mastra.md +21 -0
  16. package/.docs/raw/course/01-first-agent/02-what-is-mastra.md +11 -0
  17. package/.docs/raw/course/01-first-agent/03-verifying-installation.md +18 -0
  18. package/.docs/raw/course/01-first-agent/04-project-structure.md +12 -0
  19. package/.docs/raw/course/01-first-agent/05-running-playground.md +19 -0
  20. package/.docs/raw/course/01-first-agent/06-understanding-system-prompts.md +13 -0
  21. package/.docs/raw/course/01-first-agent/07-creating-your-agent.md +49 -0
  22. package/.docs/raw/course/01-first-agent/08-exporting-your-agent.md +18 -0
  23. package/.docs/raw/course/01-first-agent/09-testing-your-agent.md +12 -0
  24. package/.docs/raw/course/01-first-agent/10-understanding-tools.md +14 -0
  25. package/.docs/raw/course/01-first-agent/11-creating-transactions-tool.md +39 -0
  26. package/.docs/raw/course/01-first-agent/12-connecting-tool-to-agent.md +29 -0
  27. package/.docs/raw/course/01-first-agent/13-testing-your-tool.md +15 -0
  28. package/.docs/raw/course/01-first-agent/14-understanding-memory.md +14 -0
  29. package/.docs/raw/course/01-first-agent/15-installing-memory.md +11 -0
  30. package/.docs/raw/course/01-first-agent/16-adding-memory-to-agent.md +28 -0
  31. package/.docs/raw/course/01-first-agent/17-testing-memory.md +15 -0
  32. package/.docs/raw/course/01-first-agent/18-conclusion.md +20 -0
  33. package/.docs/raw/course/02-agent-tools-mcp/01-introduction-to-mcp.md +15 -0
  34. package/.docs/raw/course/02-agent-tools-mcp/02-installing-mcp.md +11 -0
  35. package/.docs/raw/course/02-agent-tools-mcp/03-setting-up-mcp-configuration.md +21 -0
  36. package/.docs/raw/course/02-agent-tools-mcp/04-initializing-mcp-tools.md +11 -0
  37. package/.docs/raw/course/02-agent-tools-mcp/05-updating-your-agent.md +20 -0
  38. package/.docs/raw/course/02-agent-tools-mcp/06-testing-mcp-setup.md +12 -0
  39. package/.docs/raw/course/02-agent-tools-mcp/07-what-is-zapier-mcp.md +14 -0
  40. package/.docs/raw/course/02-agent-tools-mcp/08-getting-zapier-mcp-url.md +16 -0
  41. package/.docs/raw/course/02-agent-tools-mcp/09-updating-mcp-config-zapier.md +17 -0
  42. package/.docs/raw/course/02-agent-tools-mcp/10-updating-agent-instructions-zapier.md +29 -0
  43. package/.docs/raw/course/02-agent-tools-mcp/11-testing-zapier-integration.md +13 -0
  44. package/.docs/raw/course/02-agent-tools-mcp/12-troubleshooting-zapier.md +17 -0
  45. package/.docs/raw/course/02-agent-tools-mcp/13-what-is-github-mcp.md +14 -0
  46. package/.docs/raw/course/02-agent-tools-mcp/14-getting-github-mcp-url.md +16 -0
  47. package/.docs/raw/course/02-agent-tools-mcp/15-updating-mcp-config-github.md +20 -0
  48. package/.docs/raw/course/02-agent-tools-mcp/16-updating-agent-instructions-github.md +33 -0
  49. package/.docs/raw/course/02-agent-tools-mcp/17-testing-github-integration.md +15 -0
  50. package/.docs/raw/course/02-agent-tools-mcp/18-troubleshooting-github.md +17 -0
  51. package/.docs/raw/course/02-agent-tools-mcp/19-what-is-hackernews-mcp.md +13 -0
  52. package/.docs/raw/course/02-agent-tools-mcp/20-updating-mcp-config-hackernews.md +26 -0
  53. package/.docs/raw/course/02-agent-tools-mcp/21-updating-agent-instructions-hackernews.md +38 -0
  54. package/.docs/raw/course/02-agent-tools-mcp/22-testing-hackernews-integration.md +15 -0
  55. package/.docs/raw/course/02-agent-tools-mcp/23-troubleshooting-hackernews.md +23 -0
  56. package/.docs/raw/course/02-agent-tools-mcp/24-what-is-filesystem-mcp.md +15 -0
  57. package/.docs/raw/course/02-agent-tools-mcp/25-creating-notes-directory.md +17 -0
  58. package/.docs/raw/course/02-agent-tools-mcp/26-updating-mcp-config-filesystem.md +33 -0
  59. package/.docs/raw/course/02-agent-tools-mcp/27-updating-agent-instructions-filesystem.md +45 -0
  60. package/.docs/raw/course/02-agent-tools-mcp/28-testing-filesystem-integration.md +16 -0
  61. package/.docs/raw/course/02-agent-tools-mcp/29-troubleshooting-filesystem.md +21 -0
  62. package/.docs/raw/course/02-agent-tools-mcp/31-enhancing-memory-configuration.md +67 -0
  63. package/.docs/raw/course/02-agent-tools-mcp/32-conclusion.md +17 -0
  64. package/.docs/raw/course/03-agent-memory/01-understanding-memory.md +13 -0
  65. package/.docs/raw/course/03-agent-memory/02-why-memory-matters.md +11 -0
  66. package/.docs/raw/course/03-agent-memory/03-installing-memory.md +11 -0
  67. package/.docs/raw/course/03-agent-memory/04-creating-basic-memory-agent.md +31 -0
  68. package/.docs/raw/course/03-agent-memory/05-updating-mastra-export.md +18 -0
  69. package/.docs/raw/course/03-agent-memory/06-testing-memory-agent.md +18 -0
  70. package/.docs/raw/course/03-agent-memory/07-understanding-memory-threads.md +14 -0
  71. package/.docs/raw/course/03-agent-memory/08-configuring-conversation-history.md +33 -0
  72. package/.docs/raw/course/03-agent-memory/09-using-memory-in-application.md +19 -0
  73. package/.docs/raw/course/03-agent-memory/10-storage-configuration.md +30 -0
  74. package/.docs/raw/course/03-agent-memory/11-testing-conversation-history.md +20 -0
  75. package/.docs/raw/course/03-agent-memory/12-handling-memory-frontend.md +62 -0
  76. package/.docs/raw/course/03-agent-memory/13-what-is-semantic-recall.md +11 -0
  77. package/.docs/raw/course/03-agent-memory/14-how-semantic-recall-works.md +14 -0
  78. package/.docs/raw/course/03-agent-memory/15-configuring-semantic-recall.md +46 -0
  79. package/.docs/raw/course/03-agent-memory/16-vector-store-configuration.md +37 -0
  80. package/.docs/raw/course/03-agent-memory/17-testing-semantic-recall.md +24 -0
  81. package/.docs/raw/course/03-agent-memory/18-disabling-semantic-recall.md +24 -0
  82. package/.docs/raw/course/03-agent-memory/19-what-is-working-memory.md +15 -0
  83. package/.docs/raw/course/03-agent-memory/20-how-working-memory-works.md +9 -0
  84. package/.docs/raw/course/03-agent-memory/21-configuring-working-memory.md +63 -0
  85. package/.docs/raw/course/03-agent-memory/22-custom-working-memory-templates.md +81 -0
  86. package/.docs/raw/course/03-agent-memory/23-testing-working-memory.md +25 -0
  87. package/.docs/raw/course/03-agent-memory/24-working-memory-in-practice.md +34 -0
  88. package/.docs/raw/course/03-agent-memory/25-combining-memory-features.md +73 -0
  89. package/.docs/raw/course/03-agent-memory/26-updating-mastra-export-comprehensive.md +32 -0
  90. package/.docs/raw/course/03-agent-memory/27-creating-learning-assistant.md +96 -0
  91. package/.docs/raw/course/03-agent-memory/28-testing-memory-enhanced-agents.md +37 -0
  92. package/.docs/raw/course/03-agent-memory/29-memory-best-practices.md +40 -0
  93. package/.docs/raw/course/03-agent-memory/30-conclusion.md +21 -0
  94. package/.docs/raw/deployment/client.mdx +6 -0
  95. package/.docs/raw/frameworks/copilotkit.mdx +24 -0
  96. package/.docs/raw/frameworks/express.mdx +215 -0
  97. package/.docs/raw/frameworks/next-js.mdx +399 -160
  98. package/.docs/raw/getting-started/installation.mdx +14 -2
  99. package/.docs/raw/getting-started/mcp-docs-server.mdx +12 -0
  100. package/.docs/raw/rag/retrieval.mdx +7 -0
  101. package/.docs/raw/rag/vector-databases.mdx +13 -0
  102. package/.docs/raw/reference/voice/voice.getSpeakers.mdx +7 -0
  103. package/.docs/raw/storage/overview.mdx +7 -0
  104. package/.docs/raw/tools-mcp/mcp-overview.mdx +6 -0
  105. package/.docs/raw/voice/overview.mdx +25 -0
  106. package/dist/_tsup-dts-rollup.d.ts +92 -0
  107. package/dist/{chunk-JWLYN5OI.js → chunk-WMDELKUG.js} +4 -1
  108. package/dist/prepare-docs/prepare.js +1 -1
  109. package/dist/stdio.js +683 -32
  110. package/package.json +4 -4
@@ -1,5 +1,27 @@
1
1
  # @mastra/agui
2
2
 
3
+ ## 1.0.1-alpha.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [267773e]
8
+ - @mastra/client-js@0.10.1-alpha.3
9
+
10
+ ## 1.0.1-alpha.3
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [d70b807]
15
+ - @mastra/core@0.10.1-alpha.3
16
+
17
+ ## 1.0.1-alpha.2
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies [6015bdf]
22
+ - @mastra/client-js@0.10.1-alpha.2
23
+ - @mastra/core@0.10.1-alpha.2
24
+
3
25
  ## 1.0.1-alpha.1
4
26
 
5
27
  ### Patch Changes
@@ -1,5 +1,21 @@
1
1
  # @mastra/client-js
2
2
 
3
+ ## 0.10.1-alpha.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 267773e: Show map config on workflow graph
8
+ Highlight borders for conditions too on workflow graph
9
+ Fix watch stream
10
+
11
+ ## 0.10.1-alpha.2
12
+
13
+ ### Patch Changes
14
+
15
+ - 6015bdf: Leverage defaultAgentStreamOption, defaultAgentGenerateOption in playground
16
+ - Updated dependencies [6015bdf]
17
+ - @mastra/core@0.10.1-alpha.2
18
+
3
19
  ## 0.10.1-alpha.1
4
20
 
5
21
  ### Patch Changes
@@ -283,20 +299,4 @@
283
299
 
284
300
  ### Patch Changes
285
301
 
286
- - Updated dependencies [ccef9f9]
287
- - Updated dependencies [51e6923]
288
- - @mastra/core@0.9.2-alpha.4
289
-
290
- ## 0.1.20-alpha.3
291
-
292
- ### Patch Changes
293
-
294
- - 4155f47: Add parameters to filter workflow runs
295
- Add fromDate and toDate to telemetry parameters
296
- - Updated dependencies [967b41c]
297
- - Updated dependencies [4155f47]
298
- - Updated dependencies [17826a9]
299
- - @mastra/core@0.9.2-alpha.3
300
-
301
-
302
- ... 990 more lines hidden. See full changelog in package directory.
302
+ ... 1006 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,17 @@
1
1
  # @mastra/core
2
2
 
3
+ ## 0.10.1-alpha.3
4
+
5
+ ### Patch Changes
6
+
7
+ - d70b807: Improve storage.init
8
+
9
+ ## 0.10.1-alpha.2
10
+
11
+ ### Patch Changes
12
+
13
+ - 6015bdf: Leverage defaultAgentStreamOption, defaultAgentGenerateOption in playground
14
+
3
15
  ## 0.10.1-alpha.1
4
16
 
5
17
  ### Patch Changes
@@ -286,17 +298,5 @@
286
298
 
287
299
  ### Patch Changes
288
300
 
289
- - 1d3b1cd: Rebump
290
-
291
- ## 0.9.1-alpha.6
292
-
293
- ### Patch Changes
294
-
295
- - c23a81c: added deprecation warnings for pg and individual args
296
-
297
- ## 0.9.1-alpha.5
298
-
299
- ### Patch Changes
300
-
301
301
 
302
- ... 1604 more lines hidden. See full changelog in package directory.
302
+ ... 1616 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,23 @@
1
1
  # @mastra/deployer-cloudflare
2
2
 
3
+ ## 0.10.1-alpha.3
4
+
5
+ ### Patch Changes
6
+
7
+ - d70b807: Improve storage.init
8
+ - Updated dependencies [d70b807]
9
+ - @mastra/core@0.10.1-alpha.3
10
+ - @mastra/deployer@0.10.1-alpha.3
11
+
12
+ ## 0.10.1-alpha.2
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies [fe68410]
17
+ - Updated dependencies [6015bdf]
18
+ - @mastra/deployer@0.10.1-alpha.2
19
+ - @mastra/core@0.10.1-alpha.2
20
+
3
21
  ## 0.10.1-alpha.1
4
22
 
5
23
  ### Patch Changes
@@ -280,23 +298,5 @@
280
298
  - Updated dependencies [967b41c]
281
299
  - Updated dependencies [4155f47]
282
300
  - Updated dependencies [17826a9]
283
- - @mastra/core@0.9.2-alpha.3
284
- - @mastra/deployer@0.3.2-alpha.3
285
-
286
- ## 0.1.21-alpha.2
287
-
288
- ### Patch Changes
289
-
290
- - Updated dependencies [26738f4]
291
- - @mastra/core@0.9.2-alpha.2
292
- - @mastra/deployer@0.3.2-alpha.2
293
-
294
- ## 0.1.21-alpha.1
295
-
296
- ### Patch Changes
297
-
298
- - Updated dependencies [254f5c3]
299
- - Updated dependencies [b804723]
300
- - @mastra/deployer@0.3.2-alpha.1
301
301
 
302
- ... 2036 more lines hidden. See full changelog in package directory.
302
+ ... 2054 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,23 @@
1
1
  # @mastra/deployer-netlify
2
2
 
3
+ ## 0.10.1-alpha.3
4
+
5
+ ### Patch Changes
6
+
7
+ - d70b807: Improve storage.init
8
+ - Updated dependencies [d70b807]
9
+ - @mastra/core@0.10.1-alpha.3
10
+ - @mastra/deployer@0.10.1-alpha.3
11
+
12
+ ## 0.10.1-alpha.2
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies [fe68410]
17
+ - Updated dependencies [6015bdf]
18
+ - @mastra/deployer@0.10.1-alpha.2
19
+ - @mastra/core@0.10.1-alpha.2
20
+
3
21
  ## 0.10.1-alpha.1
4
22
 
5
23
  ### Patch Changes
@@ -280,23 +298,5 @@
280
298
  - Updated dependencies [4155f47]
281
299
  - Updated dependencies [17826a9]
282
300
  - @mastra/core@0.9.2-alpha.3
283
- - @mastra/deployer@0.3.2-alpha.3
284
-
285
- ## 0.1.21-alpha.2
286
-
287
- ### Patch Changes
288
-
289
- - Updated dependencies [26738f4]
290
- - @mastra/core@0.9.2-alpha.2
291
- - @mastra/deployer@0.3.2-alpha.2
292
-
293
- ## 0.1.21-alpha.1
294
-
295
- ### Patch Changes
296
-
297
- - Updated dependencies [254f5c3]
298
- - Updated dependencies [b804723]
299
- - @mastra/deployer@0.3.2-alpha.1
300
- - @mastra/core@0.9.2-alpha.1
301
301
 
302
- ... 2005 more lines hidden. See full changelog in package directory.
302
+ ... 2023 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,23 @@
1
1
  # @mastra/deployer-vercel
2
2
 
3
+ ## 0.10.1-alpha.3
4
+
5
+ ### Patch Changes
6
+
7
+ - d70b807: Improve storage.init
8
+ - Updated dependencies [d70b807]
9
+ - @mastra/core@0.10.1-alpha.3
10
+ - @mastra/deployer@0.10.1-alpha.3
11
+
12
+ ## 0.10.1-alpha.2
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies [fe68410]
17
+ - Updated dependencies [6015bdf]
18
+ - @mastra/deployer@0.10.1-alpha.2
19
+ - @mastra/core@0.10.1-alpha.2
20
+
3
21
  ## 0.10.1-alpha.1
4
22
 
5
23
  ### Patch Changes
@@ -280,23 +298,5 @@
280
298
 
281
299
  ### Patch Changes
282
300
 
283
- - Updated dependencies [967b41c]
284
- - Updated dependencies [4155f47]
285
- - Updated dependencies [17826a9]
286
- - @mastra/core@0.9.2-alpha.3
287
- - @mastra/deployer@0.3.2-alpha.3
288
-
289
- ## 0.1.21-alpha.2
290
-
291
- ### Patch Changes
292
-
293
- - Updated dependencies [26738f4]
294
- - @mastra/core@0.9.2-alpha.2
295
- - @mastra/deployer@0.3.2-alpha.2
296
-
297
- ## 0.1.21-alpha.1
298
-
299
- ### Patch Changes
300
-
301
301
 
302
- ... 2009 more lines hidden. See full changelog in package directory.
302
+ ... 2027 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,22 @@
1
1
  # @mastra/deployer
2
2
 
3
+ ## 0.10.1-alpha.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [d70b807]
8
+ - @mastra/core@0.10.1-alpha.3
9
+ - @mastra/server@0.10.1-alpha.3
10
+
11
+ ## 0.10.1-alpha.2
12
+
13
+ ### Patch Changes
14
+
15
+ - fe68410: Fix mcp server routes
16
+ - Updated dependencies [6015bdf]
17
+ - @mastra/server@0.10.1-alpha.1
18
+ - @mastra/core@0.10.1-alpha.2
19
+
3
20
  ## 0.10.1-alpha.1
4
21
 
5
22
  ### Patch Changes
@@ -282,21 +299,4 @@
282
299
  - @mastra/server@2.0.2-alpha.6
283
300
  - @mastra/core@0.9.2-alpha.6
284
301
 
285
- ## 0.3.2-alpha.5
286
-
287
- ### Patch Changes
288
-
289
- - 8607972: Introduce Mastra lint cli command
290
- - Updated dependencies [3d2fb5c]
291
- - Updated dependencies [7eeb2bc]
292
- - Updated dependencies [8607972]
293
- - Updated dependencies [7eeb2bc]
294
- - Updated dependencies [fba031f]
295
- - @mastra/core@0.9.2-alpha.5
296
- - @mastra/server@2.0.2-alpha.5
297
-
298
- ## 0.3.2-alpha.4
299
-
300
- ### Patch Changes
301
-
302
- ... 2010 more lines hidden. See full changelog in package directory.
302
+ ... 2027 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,13 @@
1
1
  # @mastra/evals
2
2
 
3
+ ## 0.10.1-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - d70b807: Improve storage.init
8
+ - Updated dependencies [d70b807]
9
+ - @mastra/core@0.10.1-alpha.3
10
+
3
11
  ## 0.10.0
4
12
 
5
13
  ### Minor Changes
@@ -290,13 +298,5 @@
290
298
 
291
299
  ## 0.1.20-alpha.5
292
300
 
293
- ### Patch Changes
294
-
295
- - Updated dependencies [3e7b69d]
296
- - @mastra/core@0.9.1-alpha.5
297
-
298
- ## 0.1.20-alpha.4
299
-
300
- ### Patch Changes
301
301
 
302
- ... 1533 more lines hidden. See full changelog in package directory.
302
+ ... 1541 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,17 @@
1
1
  # @mastra/mcp-docs-server
2
2
 
3
+ ## 0.11.0-alpha.2
4
+
5
+ ### Minor Changes
6
+
7
+ - 3240a80: feat: add mastra interactive course
8
+
9
+ ## 0.10.1-alpha.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 96f3fb2: Change logging for non existent paths when using mcp-docs-server
14
+
3
15
  ## 0.10.1-alpha.0
4
16
 
5
17
  ### Patch Changes
@@ -287,16 +299,4 @@
287
299
  - @mastra/core@0.9.2-alpha.2
288
300
  - @mastra/mcp@0.4.2-alpha.2
289
301
 
290
- ## 0.0.12-alpha.1
291
-
292
- ### Patch Changes
293
-
294
- - Updated dependencies [b804723]
295
- - Updated dependencies [8bb9b4d]
296
- - @mastra/core@0.9.2-alpha.1
297
- - @mastra/mcp@0.4.2-alpha.1
298
-
299
- ## 0.0.12-alpha.0
300
-
301
-
302
- ... 593 more lines hidden. See full changelog in package directory.
302
+ ... 605 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,13 @@
1
1
  # @mastra/memory
2
2
 
3
+ ## 0.10.1-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - d70b807: Improve storage.init
8
+ - Updated dependencies [d70b807]
9
+ - @mastra/core@0.10.1-alpha.3
10
+
3
11
  ## 0.10.0
4
12
 
5
13
  ### Minor Changes
@@ -290,13 +298,5 @@
290
298
  - Updated dependencies [2d17c73]
291
299
  - @mastra/core@0.9.1-alpha.8
292
300
 
293
- ## 0.3.1-alpha.7
294
-
295
- ### Patch Changes
296
-
297
- - Updated dependencies [1d3b1cd]
298
- - @mastra/core@0.9.1-alpha.7
299
-
300
- ## 0.3.1-alpha.6
301
301
 
302
- ... 1919 more lines hidden. See full changelog in package directory.
302
+ ... 1927 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,33 @@
1
1
  # @mastra/playground-ui
2
2
 
3
+ ## 5.1.1-alpha.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 267773e: Show map config on workflow graph
8
+ Highlight borders for conditions too on workflow graph
9
+ Fix watch stream
10
+ - Updated dependencies [267773e]
11
+ - @mastra/client-js@0.10.1-alpha.3
12
+
13
+ ## 5.1.1-alpha.4
14
+
15
+ ### Patch Changes
16
+
17
+ - 3c2dba5: add workflow run list
18
+ - 33f1c64: revamp the experience for workflows
19
+ - Updated dependencies [d70b807]
20
+ - @mastra/core@0.10.1-alpha.3
21
+
22
+ ## 5.1.1-alpha.3
23
+
24
+ ### Patch Changes
25
+
26
+ - 6015bdf: Leverage defaultAgentStreamOption, defaultAgentGenerateOption in playground
27
+ - Updated dependencies [6015bdf]
28
+ - @mastra/client-js@0.10.1-alpha.2
29
+ - @mastra/core@0.10.1-alpha.2
30
+
3
31
  ## 5.1.1-alpha.2
4
32
 
5
33
  ### Patch Changes
@@ -270,33 +298,5 @@
270
298
  - 33b84fd: fix showing sig digits in trace / span duration
271
299
  - 26738f4: Switched from a custom MCP tools schema deserializer to json-schema-to-zod - fixes an issue where MCP tool schemas didn't deserialize properly in Mastra playground. Also added support for testing tools with no input arguments in playground
272
300
  - 0097d50: Add serializedStepGraph to vNext workflow
273
- Return serializedStepGraph from vNext workflow
274
- Use serializedStepGraph in vNext workflow graph
275
- - 5b43dd0: revamp ui for threads
276
- - fba031f: Show traces for vNext workflow
277
- - b63e712: refactor: Separate fetching traces from within playground-ui components
278
- - Updated dependencies [2cf3b8f]
279
- - Updated dependencies [6052aa6]
280
- - Updated dependencies [967b41c]
281
- - Updated dependencies [3d2fb5c]
282
- - Updated dependencies [26738f4]
283
- - Updated dependencies [4155f47]
284
- - Updated dependencies [254f5c3]
285
- - Updated dependencies [7eeb2bc]
286
- - Updated dependencies [b804723]
287
- - Updated dependencies [8607972]
288
- - Updated dependencies [ccef9f9]
289
- - Updated dependencies [0097d50]
290
- - Updated dependencies [7eeb2bc]
291
- - Updated dependencies [17826a9]
292
- - Updated dependencies [7d8b7c7]
293
- - Updated dependencies [2429c74]
294
- - Updated dependencies [fba031f]
295
- - Updated dependencies [2e4f8e9]
296
- - Updated dependencies [3a5f1e1]
297
- - Updated dependencies [51e6923]
298
- - Updated dependencies [8398d89]
299
- - @mastra/client-js@0.1.20
300
- - @mastra/core@0.9.2
301
-
302
- ... 1138 more lines hidden. See full changelog in package directory.
301
+
302
+ ... 1166 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,20 @@
1
1
  # @mastra/deployer
2
2
 
3
+ ## 0.10.1-alpha.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [d70b807]
8
+ - @mastra/core@0.10.1-alpha.3
9
+
10
+ ## 0.10.1-alpha.1
11
+
12
+ ### Patch Changes
13
+
14
+ - 6015bdf: Leverage defaultAgentStreamOption, defaultAgentGenerateOption in playground
15
+ - Updated dependencies [6015bdf]
16
+ - @mastra/core@0.10.1-alpha.2
17
+
3
18
  ## 0.10.1-alpha.0
4
19
 
5
20
  ### Patch Changes
@@ -284,19 +299,4 @@
284
299
 
285
300
  ### Patch Changes
286
301
 
287
- - 0097d50: Add serializedStepGraph to vNext workflow
288
- Return serializedStepGraph from vNext workflow
289
- Use serializedStepGraph in vNext workflow graph
290
- - Updated dependencies [0097d50]
291
- - @mastra/core@0.9.2-alpha.0
292
-
293
- ## 2.0.1
294
-
295
- ### Patch Changes
296
-
297
- - 34a76ca: Call workflow cleanup function when closing watch stream controller
298
- - 35955b0: Rename import to runtime-contxt
299
- - c1409ef: Add vNextWorkflow handlers and APIs
300
- Add stepGraph and steps to vNextWorkflow
301
-
302
- ... 1749 more lines hidden. See full changelog in package directory.
302
+ ... 1764 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,26 @@
1
1
  # create-mastra
2
2
 
3
+ ## 0.10.1-alpha.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 267773e: Show map config on workflow graph
8
+ Highlight borders for conditions too on workflow graph
9
+ Fix watch stream
10
+
11
+ ## 0.10.1-alpha.4
12
+
13
+ ### Patch Changes
14
+
15
+ - 3c2dba5: add workflow run list
16
+ - 33f1c64: revamp the experience for workflows
17
+
18
+ ## 0.10.1-alpha.3
19
+
20
+ ### Patch Changes
21
+
22
+ - 6015bdf: Leverage defaultAgentStreamOption, defaultAgentGenerateOption in playground
23
+
3
24
  ## 0.10.1-alpha.2
4
25
 
5
26
  ### Patch Changes
@@ -277,26 +298,5 @@
277
298
 
278
299
  ## 0.2.8
279
300
 
280
- ### Patch Changes
281
-
282
- - 1ebbfbf: Ability to toggle stream vs generate in playground
283
- - a2318cd: Revamp mastra deply dx, Make mastra build command output deployment ready build
284
- - 37bb612: Add Elastic-2.0 licensing for packages
285
- - c8fe5f0: change the header of all pages with the one from the DS
286
-
287
- ## 0.2.8-alpha.1
288
-
289
- ### Patch Changes
290
-
291
- - 1ebbfbf: Ability to toggle stream vs generate in playground
292
-
293
- ## 0.2.8-alpha.0
294
-
295
- ### Patch Changes
296
-
297
- - a2318cd: Revamp mastra deply dx, Make mastra build command output deployment ready build
298
- - 37bb612: Add Elastic-2.0 licensing for packages
299
- - c8fe5f0: change the header of all pages with the one from the DS
300
-
301
301
 
302
- ... 715 more lines hidden. See full changelog in package directory.
302
+ ... 736 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,41 @@
1
1
  # mastra
2
2
 
3
+ ## 0.10.1-alpha.6
4
+
5
+ ### Patch Changes
6
+
7
+ - 3240a80: feat: add vscode as option to interactive prompt
8
+
9
+ ## 0.10.1-alpha.5
10
+
11
+ ### Patch Changes
12
+
13
+ - 992fe17: chore: remove check for alpha and non-alpha mastra packages from mastra lint
14
+ - 267773e: Show map config on workflow graph
15
+ Highlight borders for conditions too on workflow graph
16
+ Fix watch stream
17
+
18
+ ## 0.10.1-alpha.4
19
+
20
+ ### Patch Changes
21
+
22
+ - d70b807: Improve storage.init
23
+ - 3c2dba5: add workflow run list
24
+ - 33f1c64: revamp the experience for workflows
25
+ - Updated dependencies [d70b807]
26
+ - @mastra/core@0.10.1-alpha.3
27
+ - @mastra/deployer@0.10.1-alpha.3
28
+
29
+ ## 0.10.1-alpha.3
30
+
31
+ ### Patch Changes
32
+
33
+ - 6015bdf: Leverage defaultAgentStreamOption, defaultAgentGenerateOption in playground
34
+ - Updated dependencies [fe68410]
35
+ - Updated dependencies [6015bdf]
36
+ - @mastra/deployer@0.10.1-alpha.2
37
+ - @mastra/core@0.10.1-alpha.2
38
+
3
39
  ## 0.10.1-alpha.2
4
40
 
5
41
  ### Patch Changes
@@ -263,40 +299,4 @@
263
299
 
264
300
  ### Patch Changes
265
301
 
266
- - 0db0992: - add new --mcp option to cli
267
- - add support for mcp in vscode
268
- - include examples with --default flag
269
- - b5d2de0: In vNext workflow serializedStepGraph, return only serializedStepFlow for steps created from a workflow
270
- allow viewing inner nested workflows in a multi-layered nested vnext workflow on the playground
271
- - 62c9e7d: Fix disappearing tool calls in streaming
272
- - Updated dependencies [e450778]
273
- - Updated dependencies [8902157]
274
- - Updated dependencies [ca0dc88]
275
- - Updated dependencies [526c570]
276
- - Updated dependencies [d7a6a33]
277
- - Updated dependencies [9cd1a46]
278
- - Updated dependencies [b5d2de0]
279
- - Updated dependencies [644f8ad]
280
- - Updated dependencies [70dbf51]
281
- - @mastra/core@0.9.3
282
- - @mastra/deployer@0.3.3
283
-
284
- ## 0.6.2-alpha.1
285
-
286
- ### Patch Changes
287
-
288
- - 62c9e7d: Fix disappearing tool calls in streaming
289
- - Updated dependencies [e450778]
290
- - Updated dependencies [8902157]
291
- - Updated dependencies [ca0dc88]
292
- - Updated dependencies [9cd1a46]
293
- - Updated dependencies [70dbf51]
294
- - @mastra/core@0.9.3-alpha.1
295
- - @mastra/deployer@0.3.3-alpha.1
296
-
297
- ## 0.6.2-alpha.0
298
-
299
- ### Patch Changes
300
-
301
-
302
- ... 3321 more lines hidden. See full changelog in package directory.
302
+ ... 3357 more lines hidden. See full changelog in package directory.
@@ -0,0 +1,21 @@
1
+ # Getting Started with Mastra
2
+
3
+ Welcome to the first step of building your first Mastra agent! In this lesson, you'll learn how to create a simple agent that can read data from a public Google Sheet using a custom tool function.
4
+
5
+ ## What is an Agent?
6
+
7
+ An agent is software with non-deterministic code that can make autonomous decisions based on inputs and environment rather than following fixed, predictable instructions every time.
8
+
9
+ Agents are AI systems that can:
10
+
11
+ - Perceive their environment through various inputs
12
+ - Make decisions based on those inputs
13
+ - Take actions to accomplish specific goals
14
+ - Learn and adapt their behavior over time
15
+
16
+ The best agents use several important features:
17
+
18
+ 1. **Memory**: They remember past interactions and learn from them
19
+ 2. **Planning**: They can break down complex tasks into smaller steps
20
+ 3. **Tool use**: They can leverage external tools and APIs to expand their capabilities
21
+ 4. **Feedback loops**: They can evaluate their own performance and adjust accordingly
@@ -0,0 +1,11 @@
1
+ # What is Mastra?
2
+
3
+ [Mastra](https://github.com/mastra-ai/mastra) is an open-source AI Agent Framework for TypeScript that includes all the basic primitives for AI engineering right out of the box:
4
+
5
+ - Agents with tools, memory, and tracing
6
+ - State-machine based workflows
7
+ - Evals for tracking and measuring AI output
8
+ - Storage for RAG pipelines
9
+ - Local development playground
10
+
11
+ With Mastra, you can quickly build, test, and deploy AI agents that can perform a wide variety of tasks. The framework is designed to be modular and extensible, allowing you to add new capabilities as needed.
@@ -0,0 +1,18 @@
1
+ # Verifying Your Mastra Installation
2
+
3
+ Before we begin building our agent, let's make sure you have Mastra properly installed. First, let's check if @mastra/core is in the package.json and there is a src/mastra directory. If so, you can skip this step.
4
+
5
+ If you haven't installed Mastra yet, you can do so by running:
6
+
7
+ ```bash
8
+ npm create mastra@latest
9
+ ```
10
+
11
+ If you do need to install mastra, follow the on-screen prompts and make sure to:
12
+
13
+ - Opt-in to installing both Agents and Workflows
14
+ - Say yes to installing tools
15
+ - Select OpenAI, Anthropic, or Google for your model
16
+ - Say yes to adding an example
17
+
18
+ You'll also need to add your OpenAI, Anthropic, or Google API key to the project.