We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Vortiago/mcp-outline'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•440 B
# Document Outline MCP features package
from mcp_outline.features import documents, health, resources
def register_all(mcp):
"""
Register all features with the MCP server.
Args:
mcp: The FastMCP server instance
"""
# Register health check routes
health.register_routes(mcp)
# Register document management features
documents.register(mcp)
# Register MCP resources
resources.register(mcp)