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•334 B
"""Backwards-compatibility wrapper for older `terra_mind_mcp.mcp_server` imports.
Public name is now **Petamind MCP**. Prefer `petamind_mcp.mcp_server`.
"""
from __future__ import annotations
import os
def main() -> None:
from petamind_mcp.mcp_server import main as _main
_main()
if __name__ == "__main__":
main()