We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SecretiveShell/MCP-allthetools'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•200 B
import asyncio
from mcp_allthetools.server import main as entrypoint
def main() -> None:
print("Hello from mcp-allthetools!")
asyncio.run(entrypoint())
if __name__ == "__main__":
main()