Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 57 additions & 5 deletions frontend/src/screens/internal-apps/Claude.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
import {
ChartLineIcon,
GiftIcon,
LightbulbIcon,
MessageCircleIcon,
} from "lucide-react";
import React from "react";
import { toast } from "sonner";
import { AppDetailConnectedApps } from "src/components/connections/AppDetailConnectedApps";
import { AppStoreDetailHeader } from "src/components/connections/AppStoreDetailHeader";
import { appStoreApps } from "src/components/connections/SuggestedAppData";
import ExternalLink from "src/components/ExternalLink";
import {
Accordion,
AccordionContent,
Expand Down Expand Up @@ -185,16 +192,61 @@ export function Claude() {
<p className="text-muted-foreground">
Connect your hub to Claude to:
</p>
<ul className="text-muted-foreground pl-4 gap-2 flex flex-col">
<ul className="text-muted-foreground pl-4 gap-4 flex flex-col">
<li>
💬 Interact with your wallet with natural language:{" "}
<span className="italic">"Pay $1 to my friend Rene"</span>
<MessageCircleIcon className="size-4 inline" /> Interact
with your wallet with natural language:{" "}
<span className="italic">"Pay $1 to my friend Rene"</span>{" "}
(with{" "}
<ExternalLink
to="https://support.claude.com/en/articles/11817273-using-claude-s-chat-search-and-memory-to-build-on-previous-context"
className="underline"
>
Claude's Memory
</ExternalLink>
)
</li>
<li>
⚡ Give Claude access to paid tools:{" "}
<GiftIcon className="size-4 inline" /> Buy giftcards:{" "}
<span className="italic">
"Buy a $15 doordash giftcard"
</span>
</span>{" "}
(with{" "}
<ExternalLink
to="https://www.bitrefill.com/account/developers/mcp-server"
className="underline"
>
Bitrefill MCP
</ExternalLink>
)
</li>
<li>
<ChartLineIcon className="size-4 inline" /> Let Claude trade
for you:{" "}
<span className="italic">
"Analyze market sentiment and trading data from the past 3
months and based on this, open a $10 2x long or short
position"
</span>{" "}
(with{" "}
<ExternalLink
to="https://sup3r.cool/ln-markets/"
className="underline"
>
LNMarkets MCP
</ExternalLink>
)
</li>
<li>
<LightbulbIcon className="size-4 inline" /> Use other
awesome paid MCP tools: (see more{" "}
<ExternalLink
to="https://github.com/getAlby/awesome-ai-bitcoin/?tab=readme-ov-file#mcp-servers"
className="underline"
>
Awesome MCP Servers
</ExternalLink>
)
</li>
</ul>

Expand Down
66 changes: 59 additions & 7 deletions frontend/src/screens/internal-apps/Goose.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
import { HammerIcon, LightbulbIcon } from "lucide-react";
import {
ChartLineIcon,
GiftIcon,
HammerIcon,
LightbulbIcon,
MessageCircleIcon,
} from "lucide-react";
import React from "react";
import { toast } from "sonner";
import { AppDetailConnectedApps } from "src/components/connections/AppDetailConnectedApps";
import { AppStoreDetailHeader } from "src/components/connections/AppStoreDetailHeader";
import { appStoreApps } from "src/components/connections/SuggestedAppData";
import ExternalLink from "src/components/ExternalLink";
import {
Accordion,
AccordionContent,
Expand Down Expand Up @@ -212,18 +219,63 @@ export function Goose() {
</p>
<div className=" flex flex-col gap-5">
<p className="text-muted-foreground">
Connect your hub to goose to:
Connect your hub to Goose to:
</p>
<ul className="text-muted-foreground pl-4 gap-2 flex flex-col">
<ul className="text-muted-foreground pl-4 gap-4 flex flex-col">
<li>
💬 Interact with your wallet with natural language:{" "}
<span className="italic">"Pay $1 to my friend Rene"</span>
<MessageCircleIcon className="size-4 inline" /> Interact
with your wallet with natural language:{" "}
<span className="italic">"Pay $1 to my friend Rene"</span>{" "}
(with{" "}
<ExternalLink
to="https://block.github.io/goose/docs/mcp/memory-mcp/"
className="underline"
>
Goose Memory Extension
</ExternalLink>
)
</li>
<li>
⚡ Give Goose access to paid tools:{" "}
<GiftIcon className="size-4 inline" /> Buy giftcards:{" "}
<span className="italic">
"Buy a $15 doordash giftcard"
</span>
</span>{" "}
(with{" "}
<ExternalLink
to="https://www.bitrefill.com/account/developers/mcp-server"
className="underline"
>
Bitrefill MCP
</ExternalLink>
)
</li>
<li>
<ChartLineIcon className="size-4 inline" /> Let Goose trade
for you:{" "}
<span className="italic">
"Analyze market sentiment and trading data from the past 3
months and based on this, open a $10 2x long or short
position"
</span>{" "}
(with{" "}
<ExternalLink
to="https://sup3r.cool/ln-markets/"
className="underline"
>
LNMarkets MCP
</ExternalLink>
)
</li>
<li>
<LightbulbIcon className="size-4 inline" /> Use other
awesome paid MCP tools: (see more{" "}
<ExternalLink
to="https://github.com/getAlby/awesome-ai-bitcoin/?tab=readme-ov-file#mcp-servers"
className="underline"
>
Awesome MCP Servers
</ExternalLink>
)
</li>
</ul>

Expand Down
Loading