We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/prefrontalsys/mnemex'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
cli.py•260 B
import uvicorn
def main():
"""Run the web server."""
# config = get_config()
# Use default host/port or make configurable
uvicorn.run("cortexgraph.web.app:app", host="0.0.0.0", port=8000, reload=False)
if __name__ == "__main__":
main()