@fabric-harness/sdk 0.2.1 → 0.2.2

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.
@@ -120,9 +120,9 @@ export declare function fumadocsSource(contentRoot: string, options?: {
120
120
  include?: (relativePath: string) => boolean;
121
121
  }): FilesystemSource;
122
122
  /**
123
- * Mount a checked-out Mintlify content directory. For the hosted
124
- * Mintlify MCP server, use `connectMcpServer({ url, transport: 'http' })`
125
- * instead — every Mintlify-published site exposes one.
123
+ * Mount a checked-out Mintlify content directory. For a hosted Mintlify
124
+ * MCP server, use `connectMcpServer('mintlify', { url, transport: 'streamable-http' })`
125
+ * instead.
126
126
  */
127
127
  export declare function mintlifySource(contentRoot: string, options?: {
128
128
  name?: string;
@@ -207,9 +207,9 @@ function stripMdxFrontmatter(text) {
207
207
  return text.slice(end + 4).replace(/^\n/, '');
208
208
  }
209
209
  /**
210
- * Mount a checked-out Mintlify content directory. For the hosted
211
- * Mintlify MCP server, use `connectMcpServer({ url, transport: 'http' })`
212
- * instead — every Mintlify-published site exposes one.
210
+ * Mount a checked-out Mintlify content directory. For a hosted Mintlify
211
+ * MCP server, use `connectMcpServer('mintlify', { url, transport: 'streamable-http' })`
212
+ * instead.
213
213
  */
214
214
  export function mintlifySource(contentRoot, options = {}) {
215
215
  const include = options.include ?? ((p) => p.endsWith('.mdx') || p.endsWith('.md') || p.endsWith('.json'));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fabric-harness/sdk",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Headless TypeScript framework for building durable, deployable autonomous agents — core SDK.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Fabric",