Skip to content

Commit e2c8773

Browse files
committed
fix: cli URLs
1 parent 1172216 commit e2c8773

16 files changed

+26
-21
lines changed

fern/cli/authentication.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: Authentication management
33
description: Manage multiple Vapi accounts and environments with the CLI
4+
slug: cli/auth
45
---
56

67
## Overview
@@ -454,8 +455,8 @@ To switch: `vapi auth switch <alias>`
454455
With authentication configured:
455456

456457
- **[Create assistants](/quickstart/phone):** Build voice assistants
457-
- **[Initialize projects](/cli/project-integration):** Add Vapi to your codebase
458-
- **[Test webhooks](/cli/webhook-testing):** Debug locally with any account
458+
- **[Initialize projects](/cli/init):** Add Vapi to your codebase
459+
- **[Test webhooks](/cli/webhook):** Debug locally with any account
459460

460461
---
461462

fern/cli/mcp-integration.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: MCP integration
33
description: Turn your IDE into a Vapi expert with Model Context Protocol
4+
slug: cli/mcp
45
---
56

67
## Overview
@@ -384,8 +385,8 @@ This project uses Vapi MCP for enhanced IDE support:
384385

385386
With MCP configured:
386387

387-
- **[Initialize a project](/cli/project-integration):** Add Vapi to your codebase
388-
- **[Test webhooks locally](/cli/webhook-testing):** Debug without external tunnels
388+
- **[Initialize a project](/cli/init):** Add Vapi to your codebase
389+
- **[Test webhooks locally](/cli/webhook):** Debug without external tunnels
389390
- **[Explore API Reference](/api-reference):** See what your IDE now knows
390391

391392
---

fern/cli/overview.mdx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: Vapi CLI
33
description: Command-line interface for building voice AI applications faster
4+
slug: cli
45
---
56

67
## Overview
@@ -234,10 +235,10 @@ vapi update
234235

235236
Now that you have the Vapi CLI installed:
236237

237-
- **[Initialize a project](/cli/project-integration):** Add Vapi to your existing codebase
238-
- **[Set up MCP](/cli/mcp-integration):** Enhance your IDE with Vapi intelligence
239-
- **[Test webhooks locally](/cli/webhook-testing):** Debug without external tunnels
240-
- **[Manage authentication](/cli/authentication):** Work with multiple accounts
238+
- **[Initialize a project](/cli/init):** Add Vapi to your existing codebase
239+
- **[Set up MCP](/cli/mcp):** Enhance your IDE with Vapi intelligence
240+
- **[Test webhooks locally](/cli/webhook):** Debug without external tunnels
241+
- **[Manage authentication](/cli/auth):** Work with multiple accounts
241242

242243
---
243244

fern/cli/project-integration.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: Project integration
33
description: Initialize Vapi in your existing projects with intelligent auto-detection
4+
slug: cli/init
45
---
56

67
## Overview
@@ -317,9 +318,9 @@ RUN vapi init --skip-install
317318

318319
After initializing your project:
319320

320-
- **[Test locally](/cli/webhook-testing):** Use `vapi listen` to test webhooks
321+
- **[Test locally](/cli/webhook):** Use `vapi listen` to test webhooks
321322
- **[Create assistants](/quickstart/phone):** Build your first voice assistant
322-
- **[Set up MCP](/cli/mcp-integration):** Enhance your IDE with Vapi intelligence
323+
- **[Set up MCP](/cli/mcp):** Enhance your IDE with Vapi intelligence
323324

324325
---
325326

fern/cli/webhook-testing.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: Local webhook testing
33
description: Test webhooks locally without ngrok using vapi listen
4+
slug: cli/webhook
45
---
56

67
## Overview

fern/debugging.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Test webhooks instantly without deploying:
131131
vapi listen --forward-to localhost:3000/webhook
132132
```
133133

134-
This eliminates the need for ngrok and shows real-time event data in your terminal. [Learn more →](/cli/webhook-testing)
134+
This eliminates the need for ngrok and shows real-time event data in your terminal. [Learn more →](/cli/webhook)
135135
</Tip>
136136

137137
### Voice Test Suites

fern/guides.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ slug: guides
9797
<br />
9898
Easily integrate the Vapi Voice Widget into your website for enhanced user interaction
9999
</Card>
100-
<Card title="Vapi CLI" icon="terminal" href="/cli/overview">
100+
<Card title="Vapi CLI" icon="terminal" href="/cli">
101101
<div className='absolute top-4 right-4'>
102102
<Icon icon="arrow-up-right-from-square" />
103103
</div>

fern/quickstart/introduction.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ The Vapi CLI brings the full power of the platform to your terminal:
125125
title="CLI Overview"
126126
icon="terminal"
127127
iconType="solid"
128-
href="/cli/overview"
128+
href="/cli"
129129
>
130130
<div className='absolute top-4 right-4'>
131131
<Icon icon="arrow-up-right-from-square" />

fern/quickstart/phone.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ vapi login
3030
vapi assistant create
3131
```
3232

33-
[Learn more about the Vapi CLI →](/cli/overview)
33+
[Learn more about the Vapi CLI →](/cli)
3434
</Tip>
3535

3636
## Create your first voice assistant

fern/quickstart/web.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ vapi init
2525
vapi listen --forward-to localhost:3000/webhook
2626
```
2727

28-
[Learn more about the Vapi CLI →](/cli/overview)
28+
[Learn more about the Vapi CLI →](/cli)
2929
</Tip>
3030

3131
## Choose your integration approach

0 commit comments

Comments
 (0)