We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nishide-dev/ml-research-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server.py•643 B
"""FastMCP server for ML Research MCP.
This module initializes the FastMCP server and registers all plotting tools.
"""
from fastmcp import FastMCP
# Create FastMCP server instance
mcp = FastMCP("ML Research MCP")
def main() -> None:
"""Entry point for running the MCP server."""
# Import tools here to avoid circular imports
# Tools register themselves via @mcp.tool() decorator when imported
# ruff: noqa: PLC0415
from ml_research_mcp.tools import (
plot_2d, # noqa: F401
plot_basic, # noqa: F401
plot_statistical, # noqa: F401
)
mcp.run()
if __name__ == "__main__":
main()