Skip to main content
Glama
kadykov

OpenAPI Schema Explorer

sample-api.json1.41 kB
{ "openapi": "3.0.3", "info": { "title": "Sample API", "version": "1.0.0" }, "paths": { "/users": { "get": { "summary": "List users", "operationId": "listUsers", "responses": { "200": { "description": "List of users", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/UserList" } } } } } } } }, "components": { "schemas": { "User": { "type": "object", "required": ["id", "email"], "properties": { "id": { "type": "integer", "format": "int64" }, "email": { "type": "string", "format": "email" }, "name": { "type": "string" }, "status": { "type": "string", "enum": ["active", "inactive"] } } }, "UserList": { "type": "object", "required": ["users"], "properties": { "users": { "type": "array", "items": { "$ref": "#/components/schemas/User" } }, "total": { "type": "integer", "format": "int32" } } } } } }

Latest Blog Posts

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/kadykov/mcp-openapi-schema-explorer'

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