Skip to main content
Glama

Databricks MCP Server

by moma1992
make_openapi.py454 B
"""Generate OpenAPI schema from FastAPI app.""" import json import click from .app import app @click.command() @click.option('--output', default='openapi.json', help='Output file for OpenAPI schema') def main(output: str): """Generate OpenAPI schema from FastAPI app.""" schema = app.openapi() with open(output, 'w') as f: json.dump(schema, f, indent=2) print(f'OpenAPI schema written to {output}') if __name__ == '__main__': main()

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/moma1992/mcp-databricks-app'

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