We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Shy2593666979/mcp-server-email'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__main__.py•365 B
import argparse
import asyncio
import server
def main():
"""Main entry point for the package."""
parser = argparse.ArgumentParser("Search files in a specified directory")
parser.add_argument("--dir", type=str, help="Specify the directory where attachments are located.")
args = parser.parse_args()
asyncio.run(server.serve(args.dir))
main()