We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Haervwe/timelines-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server.py•372 B
"""
Main FastMCP Server - Infrastructure Layer
This module initializes the FastMCP server.
Tools are defined in the tools/ directory and imported here.
"""
from fastmcp import FastMCP
# Initialize the FastMCP server
mcp = FastMCP(name="Timelines MCP")
# Import and register tools (they will auto-register via decorators)
from .tools import project_tools # noqa: F401