mrvn-cli 0.3.2 → 0.3.3
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 +7 -0
- package/dist/index.js +7154 -6981
- package/dist/index.js.map +1 -1
- package/dist/marvin-serve.js +1176 -9
- package/dist/marvin-serve.js.map +1 -1
- package/dist/marvin.js +4683 -4508
- package/dist/marvin.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -199,12 +199,19 @@ declare class SourceManifestManager {
|
|
|
199
199
|
private hashFile;
|
|
200
200
|
}
|
|
201
201
|
|
|
202
|
+
interface NavGroup {
|
|
203
|
+
label: string;
|
|
204
|
+
types: string[];
|
|
205
|
+
}
|
|
206
|
+
|
|
202
207
|
interface McpServerOptions {
|
|
203
208
|
manifest?: SourceManifestManager;
|
|
204
209
|
sourcesDir?: string;
|
|
205
210
|
sessionStore?: SessionStore;
|
|
206
211
|
pluginTools?: SdkMcpToolDefinition<any>[];
|
|
207
212
|
skillTools?: SdkMcpToolDefinition<any>[];
|
|
213
|
+
projectName?: string;
|
|
214
|
+
navGroups?: NavGroup[];
|
|
208
215
|
}
|
|
209
216
|
declare function createMarvinMcpServer(store: DocumentStore, options?: McpServerOptions): McpSdkServerConfigWithInstance;
|
|
210
217
|
|