Skip to main content
Glama

Google API Discovery Service MCP Server

main.py3.07 kB
# generated by fastapi-codegen: # filename: openapi.yaml # timestamp: 2025-06-29T01:54:10+00:00 import argparse import json import os from typing import * from typing import Optional from autogen.mcp.mcp_proxy import MCPProxy from autogen.mcp.mcp_proxy.security import BaseSecurity from fastapi import Query from models import Alt, DirectoryList, RestDescription app = MCPProxy( contact={'name': 'Google', 'url': 'https://google.com', 'x-twitter': 'youtube'}, description='Provides information about other Google APIs, such as what APIs are available, the resource, and method details for each API.', license={ 'name': 'Creative Commons Attribution 3.0', 'url': 'http://creativecommons.org/licenses/by/3.0/', }, termsOfService='https://developers.google.com/terms/', title='API Discovery Service', version='v1', servers=[{'url': 'https://www.googleapis.com/discovery/v1'}], ) @app.get( '/apis', description=""" Retrieve the list of APIs supported at this endpoint. """, tags=['api_discovery'], ) def discovery_apis_list( name: Optional[str] = None, preferred: Optional[bool] = None, alt: Optional[Alt] = None, fields: Optional[str] = None, key: Optional[str] = None, oauth_token: Optional[str] = None, pretty_print: Optional[bool] = Query(None, alias='prettyPrint'), quota_user: Optional[str] = Query(None, alias='quotaUser'), user_ip: Optional[str] = Query(None, alias='userIp'), ): raise RuntimeError("Should be patched by MCPProxy and never executed") @app.get( '/apis/{api}/{version}/rest', description=""" Retrieve the description of a particular version of an api. """, tags=['api_discovery'], ) def discovery_apis_get_rest( api: str, version: str = ..., alt: Optional[Alt] = None, fields: Optional[str] = None, key: Optional[str] = None, oauth_token: Optional[str] = None, pretty_print: Optional[bool] = Query(None, alias='prettyPrint'), quota_user: Optional[str] = Query(None, alias='quotaUser'), user_ip: Optional[str] = Query(None, alias='userIp'), ): raise RuntimeError("Should be patched by MCPProxy and never executed") if __name__ == "__main__": parser = argparse.ArgumentParser(description="MCP Server") parser.add_argument( "transport", choices=["stdio", "sse", "streamable-http"], help="Transport mode (stdio, sse or streamable-http)", ) args = parser.parse_args() if "CONFIG_PATH" in os.environ: config_path = os.environ["CONFIG_PATH"] app.load_configuration(config_path) if "CONFIG" in os.environ: config = os.environ["CONFIG"] app.load_configuration_from_string(config) if "SECURITY" in os.environ: security_params = BaseSecurity.parse_security_parameters_from_env( os.environ, ) app.set_security_params(security_params) mcp_settings = json.loads(os.environ.get("MCP_SETTINGS", "{}")) app.get_mcp(**mcp_settings).run(transport=args.transport)

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/ag2-mcp-servers/api-discovery-service'

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