HTTP Headers (Optional)
{#if headers.length === 0}

No headers configured

{:else} {#each headers as header, i}
{#if isSensitiveHeader(header.key)} {/if}
{/each} {/if}

Common examples:
• Bearer token: Authorization: Bearer YOUR_TOKEN
• API key: X-API-Key: YOUR_KEY

Be careful with custom MCP servers.

They receive your requests (including conversation context and any headers you add) and can run powerful tools on your behalf. Only add servers you trust and review their source. Never share confidental informations.

{#if error}

{error}

{/if}