We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mcp-bridge/local-filesystem'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•293 B
"""MCP API routes for LocalFS."""
from .directory_routes import register_directory_routes
from .file_routes import register_file_routes
from .search_routes import register_search_routes
__all__ = [
"register_directory_routes",
"register_file_routes",
"register_search_routes",
]