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
context_server_new.py•311 B
"""
Backwards compatibility wrapper for the refactored Project Context MCP Server
This file maintains the original interface while using the new modular structure.
"""
from server.main import main
# For direct imports
from server.base import UnifiedProjectContextServer
if __name__ == "__main__":
main()