Skip to main content
Glama
__init__.py585 B
"""amap_mcp_server package""" import argparse from .server import mcp def main(): """Entry point for the MCP server""" # Parse command line arguments parser = argparse.ArgumentParser(description="Amap MCP Server") parser.add_argument('transport', nargs='?', default='stdio', choices=['stdio', 'sse', 'streamable-http'], help='Transport type (stdio, sse, or streamable-http)') args = parser.parse_args() # Run the MCP server with the specified transport mcp.run(transport=args.transport) if __name__ == "__main__": main()

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/sugarforever/amap-mcp-server'

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