We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AI-Riksarkivet/oxenstierna'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•377 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.
"""
from importlib.metadata import version
__version__ = version("ra-mcp")
from .server import main, main_server, run_server, setup_server
__all__ = [
"main",
"main_server",
"run_server",
"setup_server",
]