We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/zaizaizhao/mcp-swagger-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
// Auth module exports
export { default as AuthManager } from "./AuthManager.vue";
// Auth types and interfaces
export interface AuthConfig {
id: string;
name: string;
type: "bearer" | "basic" | "apikey" | "oauth2";
config: Record<string, any>;
createdAt: Date;
updatedAt: Date;
}
export interface BearerTokenConfig {
token: string;
headerName?: string;
}
export interface BasicAuthConfig {
username: string;
password: string;
}
export interface APIKeyConfig {
key: string;
location: "header" | "query";
name: string;
}