We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dhevenb/dheven-spec3-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main.py•643 B
"""Main entry point for the Spec3 MCP Server."""
import logging
from spec3_mcp_server.server import create_server
# Configure logging
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s"
)
logger = logging.getLogger(__name__)
def main() -> None:
"""Main entry point for running the MCP server."""
logger.info("Starting Spec3 MCP Server...")
# Create the MCP server
mcp = create_server()
# Run the server (FastMCP handles stdio communication)
logger.info("Server ready for MCP connections via stdio")
mcp.run()
if __name__ == "__main__":
main()