We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Zazzles2908/EX_AI-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
ws_exercise_all_tools_noauth.py•379 B
#!/usr/bin/env python
"""
Wrapper to exercise WS tools without sending EXAI_WS_TOKEN.
Useful when the daemon is configured to allow anonymous access.
"""
import os
import asyncio
# Force empty token for this process only
os.environ["EXAI_WS_TOKEN"] = ""
import ws_exercise_all_tools as w # type: ignore
if __name__ == "__main__":
raise SystemExit(asyncio.run(w.main()))