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•693 B
"""
Main FastMCP Server
This module initializes and runs the FastMCP server for the timelines application.
"""
from fastmcp import FastMCP
# Initialize the FastMCP server
mcp = FastMCP("Timelines MCP Server")
@mcp.tool()
def get_server_info() -> dict:
"""Get information about the Timelines MCP server."""
return {
"name": "Timelines MCP Server",
"version": "0.1.0",
"description": "MCP server for maintaining coherent timelines in narratives",
}
def main():
"""Run the server."""
# The FastMCP server will be started by the MCP protocol
# This can be customized based on deployment needs
pass
if __name__ == "__main__":
main()