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 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