We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/roddutra/agent-mcp-gateway'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main_test.py•345 B
"""Test entry point for Agent MCP Gateway with test configs."""
import os
# Set test config paths before importing anything else
os.environ["GATEWAY_MCP_CONFIG"] = "./config/.mcp.test.json"
os.environ["GATEWAY_RULES"] = "./config/.mcp-gateway-rules.json"
# Now import and run main
from main import main
if __name__ == "__main__":
main()