We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/NehoraiHadad/telegraph-mcp-py'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server.py•509 B
"""Telegraph MCP Server - Main server implementation."""
from mcp.server.fastmcp import FastMCP
from .tools import register_all_tools
from .resources import register_resources
from .prompts import register_prompts
# Create the MCP server
mcp = FastMCP(
name="telegraph-mcp-py",
)
# Register all components
register_all_tools(mcp)
register_resources(mcp)
register_prompts(mcp)
def main():
"""Run the Telegraph MCP server."""
mcp.run(transport="stdio")
if __name__ == "__main__":
main()