We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/alexalexalex222/petamind-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
mcp_server.py•571 B
"""Petamind MCP stdio server entrypoint.
We keep this thin on purpose: the full implementation lives in
`titan_factory.mcp_code_server` so it can reuse the existing pipeline utilities.
"""
from __future__ import annotations
import os
def main() -> None:
# MCP stdio transport requires stdout cleanliness. Ensure any Rich-based logs
# end up on stderr, even if downstream imports log warnings.
os.environ.setdefault("TITAN_STDIO_MCP", "1")
from titan_factory.mcp_code_server import main as _main
_main()
if __name__ == "__main__":
main()