File size: 602 Bytes
f0743f4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import {
  AuthorizationTypeEnum,
  AuthTypeEnum,
  TokenExchangeMethodEnum,
} from 'librechat-data-provider';
import { MCPForm } from '~/common/types';

export const defaultMCPFormValues: MCPForm = {
  type: AuthTypeEnum.None,
  saved_auth_fields: false,
  api_key: '',
  authorization_type: AuthorizationTypeEnum.Basic,
  custom_auth_header: '',
  oauth_client_id: '',
  oauth_client_secret: '',
  authorization_url: '',
  client_url: '',
  scope: '',
  token_exchange_method: TokenExchangeMethodEnum.DefaultPost,
  name: '',
  description: '',
  url: '',
  tools: [],
  icon: '',
  trust: false,
};