{% extends "base.html" %} {% block title %}Integrations — LynxManager{% endblock %} {% block content %}

Integrations

Wire Lynx into your AI client
💡 Each card below has a snippet pre-populated with your Python interpreter and your config path — just copy and paste it into the matching file. Then restart the client so it picks up the new MCP server.
{% for c in clients %}
{{ c.label }}
Paste into {{ c.config_file }}
{% if c.rules_file %} Download {{ c.rules_file.split('/')[-1] }} {% endif %}
{{ c.snippet }}
{% if c.notes %}
{{ c.notes }}
{% endif %}
{% endfor %}
{% if rules_preview %}

Rules file preview

Auto-generated from your configured sources ({{ source_names|join(', ') }}). Lives at the path the chosen client expects (CLAUDE.md, AGENTS.md, ...).
{{ rules_preview }}
{% endif %} {% endblock %}