We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SARAMALI15792/InstituaionMCPServer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
cli.py•525 B
"""MCP server CLI entry point for stdio transport (Claude Code CLI)"""
import sys
import os
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from server.tools import register_all_tools
from mcp.server.fastmcp import FastMCP
def main():
"""Main entry point for the MCP server CLI."""
mcp = FastMCP("university_mcp", instructions="Tools for university information access and management.")
register_all_tools(mcp)
mcp.run(transport="stdio")
if __name__ == "__main__":
main()