mcp-meilisearch 1.0.5 → 1.0.6
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.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Plugin } from "vite";
|
|
2
|
+
import { MCPClient } from "./client.js";
|
|
2
3
|
/**
|
|
3
4
|
* Options for the MCP Vite plugin
|
|
4
5
|
*/
|
|
@@ -45,6 +46,7 @@ export interface MCPPluginOptions {
|
|
|
45
46
|
* @returns A Vite plugin
|
|
46
47
|
*/
|
|
47
48
|
export declare function mcpPlugin(options?: MCPPluginOptions): Plugin;
|
|
49
|
+
export { MCPClient };
|
|
48
50
|
/**
|
|
49
51
|
* Default export for convenience
|
|
50
52
|
*/
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,MAAM,CAAC;AAC9B,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAKxC;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IAE7B;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;;OAGG;IACH,sBAAsB,CAAC,EAAE,MAAM,CAAC;CACjC;AAED;;;;GAIG;AACH,wBAAgB,SAAS,CAAC,OAAO,GAAE,gBAAqB,GAAG,MAAM,CA0IhE;AAGD,OAAO,EAAE,SAAS,EAAE,CAAC;AAErB;;GAEG;AACH,eAAe,SAAS,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { MCPClient } from "./client.js";
|
|
1
2
|
import { initServer } from "./server.js";
|
|
2
3
|
import { randomUUID } from "node:crypto";
|
|
3
4
|
import { createErrorResponse } from "./utils/error-handler.js";
|
|
@@ -121,6 +122,8 @@ export function mcpPlugin(options = {}) {
|
|
|
121
122
|
},
|
|
122
123
|
};
|
|
123
124
|
}
|
|
125
|
+
// Export the MCPClient class for external use
|
|
126
|
+
export { MCPClient };
|
|
124
127
|
/**
|
|
125
128
|
* Default export for convenience
|
|
126
129
|
*/
|