glyx/

Connect MCP Client

One-click connection

https://mcp.glyx.dev/mcp?project_ref=default

Install in one click:

CursorAdd to Cursor

Or add to .cursor/mcp.json

json
{
  "mcpServers": {
    "glyx": {
      "url": "https://mcp.glyx.dev/mcp?project_ref=default"
    }
  }
}
</>

Install SDK

Python or Node.js SDK

1

Install the SDK

bash
pip install glyx
2

Initialize the client

python
from glyx import GlyxClient

client = GlyxClient(api_key="your-api-key")
3

Run an agent

python
# Run an agent
result = client.agents.run(
    agent="cursor",
    prompt="Fix the authentication bug in auth.py",
    model="gpt-5"
)

print(result.output)