We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/wblair8689/project-context-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run_modular_server.py•399 B
#!/usr/bin/env python3
"""
Main entry point for Project Context MCP Server
This file should be run directly, not as a module
"""
import sys
import os
# Add the parent directory to the Python path so imports work correctly
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
# Now we can import from the server package
from server.main import main
if __name__ == "__main__":
main()