@mastra/playground-ui 6.6.0 → 6.6.2-alpha.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.
package/dist/index.es.js CHANGED
@@ -13918,7 +13918,7 @@ const AgentMetadata = ({
13918
13918
  modelVersion
13919
13919
  }) => {
13920
13920
  const networkAgentsMap = agent.agents ?? {};
13921
- const networkAgents = Object.values(networkAgentsMap);
13921
+ const networkAgents = Object.keys(networkAgentsMap).map((key) => ({ ...networkAgentsMap[key], id: key }));
13922
13922
  const agentTools = agent.tools ?? {};
13923
13923
  const tools = Object.keys(agentTools).map((key) => agentTools[key]);
13924
13924
  const agentWorkflows = agent.workflows ?? {};
@@ -17832,7 +17832,7 @@ const EmptyMCPTable = () => /* @__PURE__ */ jsx("div", { className: "flex h-full
17832
17832
  className: "w-full",
17833
17833
  variant: "light",
17834
17834
  as: "a",
17835
- href: "https://mastra.ai/en/docs/getting-started/mcp-docs-server",
17835
+ href: "https://mastra.ai/en/docs/tools-mcp/mcp-overview",
17836
17836
  target: "_blank",
17837
17837
  children: [
17838
17838
  /* @__PURE__ */ jsx(Icon, { children: /* @__PURE__ */ jsx(McpServerIcon, {}) }),