Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const HeroBody: React.FC<McpSearchParams> = props => {
return (
<div className="flex flex-col justify-center gap-6 md:gap-8">
<div className="flex flex-col gap-4 md:gap-6 justify-center">
<h1 className="text-4xl md:text-5xl font-bold">x402scan MCP</h1>
<h1 className="text-4xl md:text-5xl font-bold">AgentCash</h1>
<p className="text-md md:text-lg text-muted-foreground/60 font-mono max-w-md">
Agents that can buy data, tools, and access.
</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const ChatGraphic = () => {
<div className="bg-card border rounded-lg overflow-hidden">
<div className="flex items-center gap-2 px-4 py-3 border-b">
<Logo className="size-4" />
<span className="font-semibold">x402scan MCP</span>
<span className="font-semibold">AgentCash</span>
</div>

<div className="p-4 flex flex-col gap-2">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const IdeGraphic = () => {
<div className="bg-card border rounded-lg overflow-hidden">
<div className="flex items-center gap-2 px-3 py-2 border-b border-border/50 bg-muted/30">
<Logo className="size-3.5" />
<span className="font-semibold text-xs">x402scan MCP</span>
<span className="font-semibold text-xs">AgentCash</span>
</div>

<div className="p-3 flex flex-col gap-2">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ export const CopyCommandButton: React.FC<Props> = ({ invite, className }) => {
const { isCopied, copyToClipboard } = useCopyToClipboard();

const command = invite
? `npx @x402scan/mcp install --invite ${invite}`
: 'npx @x402scan/mcp install';
? `npx agentcash install --invite ${invite}`
: 'npx agentcash install';

return (
<Card
Expand All @@ -31,7 +31,7 @@ export const CopyCommandButton: React.FC<Props> = ({ invite, className }) => {
onClick={() => void copyToClipboard(command)}
>
<span className="font-mono font-semibold text-sm md:text-base">
npx <span className="text-primary">@x402scan/mcp</span> install
npx <span className="text-primary">agentcash</span> install
</span>
<AnimatePresence mode="wait">
{isCopied ? (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default async function DepositPage({
<div className="flex flex-col items-start gap-1">
<h1 className="text-3xl font-bold font-mono">Add Funds</h1>
<p className="text-muted-foreground">
Add USDC to your x402scan MCP to call resources
Add USDC to your AgentCash to call resources
</p>
</div>
<CopyAddress address={address} />
Expand Down
2 changes: 1 addition & 1 deletion apps/scan/src/app/mcp/(home)/deposit/[address]/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ export default async function DepositLayout({

const errorMessage = `This address is not valid. Please run:

\`npx @x402scan/mcp fund\` to get a deposit URL.`;
\`npx agentcash fund\` to get a deposit URL.`;
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const ClientInstallAccordion: React.FC<Props> = ({
title={
client === Clients.Cursor ? 'Manual Install' : 'Quick Install'
}
command={`npx @x402scan/mcp install --client ${client}${props.invite ? ` --invite ${props.invite}` : ''}`}
command={`npx agentcash install --client ${client}${props.invite ? ` --invite ${props.invite}` : ''}`}
/>
{InstallComponent && <InstallComponent {...props} />}
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const ClaudeCodeInstall: ClientInstallComponent = ({ invite }) => {
return (
<CopyCommand
title="Manual Install"
command={`claude mcp add x402scan --scope user -- npx -y @x402scan/mcp@latest${invite ? ` -- invite ${invite}` : ''}`}
command={`claude mcp add agentcash --scope user -- npx -y agentcash@latest${invite ? ` --invite ${invite}` : ''}`}
/>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const CodexInstall: ClientInstallComponent = ({ invite }) => {
return (
<CopyCommand
title="Manual Install"
command={`codex mcp add context7 -- npx -y @x402scan/mcp@latest${invite ? ` --invite ${invite}` : ''}`}
command={`codex mcp add agentcash -- npx -y agentcash@latest${invite ? ` --invite ${invite}` : ''}`}
/>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const encodeConfig = (config: Record<string, unknown>) => {
};

const cursorDeepLink = (invite?: string) => {
const args = ['-y', '@x402scan/mcp@latest'];
const args = ['-y', 'agentcash@latest'];

if (invite) {
args.push(`--invite ${invite}`);
Expand All @@ -28,7 +28,7 @@ const cursorDeepLink = (invite?: string) => {

const encodedConfig = encodeConfig(config);

return `cursor://anysphere.cursor-deeplink/mcp/install?name=x402&config=${encodeURIComponent(encodedConfig)}`;
return `cursor://anysphere.cursor-deeplink/mcp/install?name=agentcash&config=${encodeURIComponent(encodedConfig)}`;
};

export const CursorInstall: ClientInstallComponent = ({ invite }) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const VscodeInstall: ClientInstallComponent = ({ invite }) => {
return (
<CopyCommand
title="Manual Install"
command={`code --add-mcp "{\\"name\\":\\"x402\\",\\"command\\": \\"npx\\",\\"args\\": [\\"-y\\",\\"@x402scan/mcp@latest\\"${invite ? `, \\"--invite\\", \\"${invite}\\"` : ''}]}"`}
command={`code --add-mcp "{\\"name\\":\\"agentcash\\",\\"command\\": \\"npx\\",\\"args\\": [\\"-y\\",\\"agentcash@latest\\"${invite ? `, \\"--invite\\", \\"${invite}\\"` : ''}]}"`}
/>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const ClientInstallHeader: React.FC<Props> = ({

const text = textProp ?? (
<>
Add x402scan MCP to <br />
Add AgentCash to <br />
{name}
</>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const ClaudeAccordion: React.FC<McpSearchParams> = ({ invite }) => {
title: 'Download the x402scan Extension',
content: (
<p>
The x402scan MCP is available as a{' '}
The AgentCash is available as a{' '}
Copy link
Copy Markdown
Contributor

@vercel vercel bot Mar 19, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Incomplete rebranding from x402scan to AgentCash in accordion component titles and text

Fix on Vercel

<a
href="https://www.anthropic.com/engineering/desktop-extensions"
target="_blank"
Expand Down Expand Up @@ -126,7 +126,7 @@ export const ClaudeAccordion: React.FC<McpSearchParams> = ({ invite }) => {
>
Source Code
</a>{' '}
of the x402scan MCP.
of the AgentCash.
</p>
</div>
</AccordionContent>
Expand All @@ -147,9 +147,9 @@ export const ClaudeAccordion: React.FC<McpSearchParams> = ({ invite }) => {
your invite code:
</p>
<div className="bg-muted p-2 rounded-lg flex justify-between items-center gap-2">
<p>Redeem my invite code {invite} on the x402scan MCP</p>
<p>Redeem my invite code {invite} on the AgentCash</p>
<CopyButton
text={`Redeem my invite code ${invite} on the x402scan MCP`}
text={`Redeem my invite code ${invite} on the AgentCash`}
/>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion apps/scan/src/app/mcp/(home)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type { Metadata } from 'next';

export const metadata: Metadata = {
title: 'MCP',
description: 'x402scan MCP - Use x402 in any AI agent',
description: 'AgentCash - Use x402 in any AI agent',
};

export default function McpLayout({ children }: LayoutProps<'/mcp'>) {
Expand Down
2 changes: 1 addition & 1 deletion apps/scan/src/app/mcp/guide/(home)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function GuidePage() {
<div className="flex flex-col gap-2">
<h1 className="text-4xl font-bold">Resources & Guides</h1>
<p className="text-muted-foreground text-lg">
How to get the most out of the x402scan MCP
How to get the most out of the AgentCash
</p>
</div>
<GuideBanner />
Expand Down
2 changes: 1 addition & 1 deletion apps/scan/src/app/mcp/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type { Metadata } from 'next';

export const metadata: Metadata = {
title: 'MCP',
description: 'x402scan MCP - Use x402 in any AI agent',
description: 'AgentCash - Use x402 in any AI agent',
};

export default function McpLayout({ children }: LayoutProps<'/mcp'>) {
Expand Down
2 changes: 1 addition & 1 deletion apps/scan/src/components/magicui/terminal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ export const Terminal = ({
)}
>
<div className="border-border flex flex-col gap-y-2 border-b p-4 text-sm font-mono font-bold">
@x402scan/mcp
agentcash
</div>
<pre className="p-4 flex-1 h-0 overflow-y-auto overflow-x-hidden">
<code className="grid gap-y-2 overflow-auto whitespace-pre-wrap">
Expand Down
Loading