Skip to main content
Glama

Swagger MCP Server

by dcolley
types.ts681 B
export interface SwaggerConfig { swaggerUrl?: string; swaggerFile?: string; apiBaseUrl: string; auth?: AuthConfig; } export interface AuthConfig { type: 'basic' | 'bearer' | 'apiKey' | 'oauth2'; username?: string; password?: string; token?: string; apiKey?: string; apiKeyName?: string; apiKeyIn?: 'header' | 'query'; } export interface ToolInput { auth?: AuthConfig; [key: string]: any; } export interface SecurityScheme { type: string; description?: string; name?: string; in?: string; scheme?: string; flows?: { implicit?: { authorizationUrl: string; scopes: Record<string, string>; }; [key: string]: any; }; }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/dcolley/swagger-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server