We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yj-liuzepeng/rag-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_main.py•321 B
import pytest
from src.main import main
def test_main_import():
"""Test that main module can be imported"""
assert main is not None
def test_main_execution(capsys):
"""Test main execution output"""
main()
captured = capsys.readouterr()
assert "Modular RAG MCP Server Started" in captured.out