Skip to main content
Glama

Swagger MCP Server

by dcolley
export interface SwaggerConfig { swaggerFile?: string; swaggerUrl?: string; apiBaseUrl: string; auth?: AuthConfig; } export interface ServerConfig { port: number; username?: string; password?: string; token?: string; } export interface AuthConfig { type: 'basic' | 'bearer' | 'apiKey' | 'oauth2'; username?: string; password?: string; token?: string; apiKey?: string; apiKeyIn?: 'header' | 'query'; apiKeyName?: string; } export interface SecurityScheme { type: string; description?: string; name?: string; in?: string; scheme?: string; bearerFormat?: string; flows?: any; } export interface ToolInput { auth?: AuthConfig; [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