Merge pull request #673 from getmaxun/mcp-logo

feat: add mcp integration option
This commit is contained in:
Karishma Shukla
2025-07-03 15:09:28 +05:30
committed by GitHub
2 changed files with 27 additions and 1 deletions

View File

@@ -730,6 +730,17 @@ export const IntegrationSettingsModal = ({
<img src="/svg/webhook.svg" alt="Webhook" style={{ margin: "6px" }} />
Webhooks
</Button>
<Button
variant="outlined"
onClick={() => {
window.open("https://docs.maxun.dev/mcp/setup", "_blank" "noopener,noreferrer");
}}
style={{ display: "flex", flexDirection: "column", alignItems: "center", background: 'white', color: '#ff00c3' }}
>
<img src="/svg/mcp.svg" alt="MCP" style={{ margin: "6px" }} />
MCP
</Button>
</div>
</div>
</GenericModal>
@@ -1190,4 +1201,4 @@ export const modalStyle = {
padding: "20px",
maxHeight: "90vh",
overflow: "auto",
};
};