Skip to main content
Glama
rwxproject
by rwxproject
__init__.py767 B
""" MCP Server Template Package A modular, reusable template for building MCP (Model Context Protocol) servers using the FastMCP framework. """ __version__ = "2.0.1" __author__ = "MCP Server Template" # Lazy import to avoid circular dependencies during package initialization def create_server(): """Create a FastMCP server instance (lazy import)""" from .server import create_server as _create_server return _create_server() def main(): """Run the main server (lazy import)""" from .server import main as _main return _main() def run_server(): """Run the server synchronously (lazy import)""" from .server import run_server as _run_server return _run_server() __all__ = ["create_server", "main", "run_server", "__version__"]

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/rwxproject/mcp-server-template'

If you have feedback or need assistance with the MCP directory API, please join our Discord server