We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gajanm/afterquery_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server.py•480 B
"""MCP Server - imports tools and runs server"""
import sys
from .tools import mcp # Import mcp instance (tools register themselves)
def run() -> None:
"""
Run the MCP server.
Note: This function expects stdout/stderr redirection to be set up
by the caller (blender_mcp_server.py) before importing this module.
FastMCP will restore stdout for JSON-RPC communication.
"""
# FastMCP handles its own logging and JSON-RPC via stdout
mcp.run()