We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AI-Riksarkivet/ra-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•295 B
"""
RA-MCP Server: Riksarkivet MCP server composition and CLI.
Provides the main MCP server that composes all tool servers
and the CLI entry point.
"""
__version__ = "0.2.7"
from .server import main_server, setup_server, main
__all__ = [
"main_server",
"setup_server",
"main",
]