We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ropon/mcp_weather'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•463 B
from .server import serve
def main():
"""MCP Time Server - Time and timezone conversion functionality for MCP"""
import argparse
import asyncio
parser = argparse.ArgumentParser(
description="give a model the ability to handle weather queries"
)
parser.add_argument("--key", type=str, help="和风天气API Key, eg: xxxxx")
args = parser.parse_args()
asyncio.run(serve(args.key))
if __name__ == "__main__":
main()