Skip to content

Commit 3741fd2

Browse files
bholmesdevsarah11918ArmandPhilippotJusticeMatthewanaxite
authored
Add section on using Warp in the "build with AI" guide (#12036)
Co-authored-by: Sarah Rainsberger <[email protected]> Co-authored-by: Armand Philippot <[email protected]> Co-authored-by: JusticeMatthew <[email protected]> Co-authored-by: anaxite <[email protected]> Co-authored-by: sarah11918 <[email protected]> Co-authored-by: ArmandPhilippot <[email protected]> Co-authored-by: yanthomasdev <[email protected]>
1 parent 36e168e commit 3741fd2

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

src/content/docs/en/guides/build-with-ai.mdx

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,34 @@ Install by clicking the button below:
7777

7878
[More info on using MCP servers with VS Code](https://code.visualstudio.com/docs/copilot/chat/mcp-servers#_add-an-mcp-server)
7979

80+
#### Warp
81+
82+
[Warp](https://warp.dev) (formerly Warp Terminal) is an agent development environment built for coding with multiple AI agents. Adding the Astro Docs MCP server allows Warp to access the latest Astro documentation when answering questions or performing coding tasks.
83+
84+
<Steps>
85+
86+
1. Open your Warp settings and go to AI > MCP Servers > Manage MCP Servers.
87+
2. Click "Add".
88+
3. Enter the following configuration. You can optionally configure the Astro MCP server to activate on startup using the `start_on_launch` flag:
89+
```json title="MCP Configuration" {3-9}
90+
{
91+
"mcpServers": {
92+
"Astro docs": {
93+
"command": "npx",
94+
"args": ["-y", "mcp-remote", "https://mcp.docs.astro.build/mcp"],
95+
"env": {},
96+
"working_directory": null,
97+
"start_on_launch": true
98+
}
99+
}
100+
}
101+
```
102+
4. Click "Save".
103+
104+
</Steps>
105+
106+
[More info on using MCP servers with Warp](https://docs.warp.dev/knowledge-and-collaboration/mcp)
107+
80108
#### Claude.ai / Claude Desktop
81109

82110
[Claude.ai](https://claude.ai) is a general-purpose AI assistant. Adding the Astro Docs MCP server allows it to access the latest documentation when answering Astro questions or generating Astro code.

0 commit comments

Comments
 (0)