โ† back to Jackfruit Launch Dashboard

Connect an agent to Jackfruit Launch Dashboard

This dashboard exposes a remote MCP server with full coverage of every feature โ€” an AI agent can read and modify everything you can do in the UI. Point your agent at:

https://jackfruit-dashboard.lukastk.dev/mcp
๐Ÿ”‘ Every request needs your dashboard secret as a bearer token: Authorization: Bearer <YOUR_SECRET>. Use the same secret you type into the dashboard. Keep it private โ€” anyone with it can change your data.

Claude Code CLI

One command (replace <YOUR_SECRET>):

claude mcp add --transport http jackfruit-launch-dashboard https://jackfruit-dashboard.lukastk.dev/mcp \
  --header "Authorization: Bearer <YOUR_SECRET>"

Then run claude mcp list โ€” you should see jackfruit-launch-dashboard โ€ฆ โœ“ Connected. The dashboard's tools are then available in your next Claude Code session.

Claude.ai & Claude Desktop custom connector

Hosted connectors sign in through a browser login (OAuth) โ€” there's no field for a bearer token, and you do not need to add a header. Just give it the URL:

  1. Open Settings โ†’ Connectors (Claude.ai) or Settings โ†’ Connectors (Desktop).
  2. Click Add custom connector.
  3. Name: Jackfruit Launch Dashboard  ยท  URL: https://jackfruit-dashboard.lukastk.dev/mcp
  4. Click Connect. A sign-in page opens โ€” enter the same password you type into the dashboard and authorize.
  5. Enable the connector in a chat's tool menu.
โš ๏ธ Don't paste the URL into a browser address bar โ€” the MCP endpoint only answers the connector's requests, so a browser will just show Cannot GET /mcp. That's normal, not an outage. Add it as a connector instead.

Claude Cowork

  1. In Cowork, open the workspace's MCP / connectors settings.
  2. Add a remote (HTTP) MCP server with URL https://jackfruit-dashboard.lukastk.dev/mcp.
  3. If a sign-in / OAuth flow opens, enter your dashboard password there โ€” that's all. If the build instead asks for a header, add Authorization: Bearer <YOUR_SECRET>.
  4. Save โ€” the dashboard tools become available to the Cowork agent.

If your Cowork build only accepts a JSON config, use:

{
  "mcpServers": {
    "jackfruit-launch-dashboard": {
      "type": "http",
      "url": "https://jackfruit-dashboard.lukastk.dev/mcp",
      "headers": { "Authorization": "Bearer <YOUR_SECRET>" }
    }
  }
}

ChatGPT custom connector

  1. Requires a plan with connectors/developer mode (Plus/Pro/Business/Enterprise as available).
  2. Settings โ†’ Connectors โ†’ Advanced โ†’ Developer mode, then Create / Add connector.
  3. MCP Server URL: https://jackfruit-dashboard.lukastk.dev/mcp
  4. Authentication: choose OAuth if offered โ€” a sign-in page opens; enter your dashboard password. (If the build instead offers a header field, set Authorization = Bearer <YOUR_SECRET>.)
  5. Save, then enable the connector for a conversation.
ChatGPT's connector UI evolves; the one constant is the URL (https://jackfruit-dashboard.lukastk.dev/mcp). Authentication is either the OAuth sign-in page or the header Authorization: Bearer <YOUR_SECRET>.