diff --git a/client/src/lib/configurationTypes.ts b/client/src/lib/configurationTypes.ts new file mode 100644 index 0000000..2310c58 --- /dev/null +++ b/client/src/lib/configurationTypes.ts @@ -0,0 +1,8 @@ +export type ConfigItem = { + description: string; + value: string | number | boolean; +} + +export type InspectorConfig = { + MCP_SERVER_REQUEST_TIMEOUT: ConfigItem; +}; \ No newline at end of file