docs: description required for "Add Extension" in cli (#5573)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
---
|
||||
title: Neon Extension
|
||||
description: Add Neon MCP Server as a Goose Extension
|
||||
description: Add Neon MCP Server as a goose Extension
|
||||
---
|
||||
|
||||
import Tabs from '@theme/Tabs';
|
||||
@@ -9,7 +9,7 @@ import CLIExtensionInstructions from '@site/src/components/CLIExtensionInstructi
|
||||
import GooseDesktopInstaller from '@site/src/components/GooseDesktopInstaller';
|
||||
import { PanelLeft } from 'lucide-react';
|
||||
|
||||
This tutorial covers how to add the [Neon MCP Server](https://github.com/neondatabase/mcp-server-neon) as a Goose extension to interact with your Neon Postgres databases and manage your projects, branches, and more.
|
||||
This tutorial covers how to add the [Neon MCP Server](https://github.com/neondatabase/mcp-server-neon) as a goose extension to interact with your Neon Postgres databases and manage your projects, branches, and more.
|
||||
|
||||
Neon offers two versions of the MCP server:
|
||||
|
||||
@@ -57,6 +57,7 @@ The Neon MCP Server grants powerful database management capabilities and is inte
|
||||
<TabItem value="cli" label="goose CLI">
|
||||
<CLIExtensionInstructions
|
||||
name="neon-mcp-remote"
|
||||
description="Manage Neon Postgres databases, projects, and branches"
|
||||
type="http"
|
||||
url="https://mcp.neon.tech/mcp"
|
||||
timeout={300}
|
||||
@@ -103,6 +104,7 @@ The Neon MCP Server grants powerful database management capabilities and is inte
|
||||
<TabItem value="cli" label="goose CLI">
|
||||
<CLIExtensionInstructions
|
||||
name="Neon MCP"
|
||||
description="Manage Neon Postgres databases, projects, and branches"
|
||||
command="npx -y @neondatabase/mcp-server-neon start <YOUR_NEON_API_KEY>"
|
||||
timeout={300}
|
||||
/>
|
||||
@@ -118,13 +120,13 @@ For all setup and configuration options, see the [official Neon MCP Server docum
|
||||
|
||||
Get an overview of all your Neon database projects and their configurations.
|
||||
|
||||
### Goose Prompt
|
||||
### goose Prompt
|
||||
|
||||
```
|
||||
List my Neon projects
|
||||
```
|
||||
|
||||
### Goose Output
|
||||
### goose Output
|
||||
|
||||
```
|
||||
I'll help you list your Neon projects using the neon__list_projects tool. By default, it will show the first 10 projects.
|
||||
@@ -164,13 +166,13 @@ All projects are running PostgreSQL 17 and have autoscaling configured between 1
|
||||
|
||||
Discover what tables and schemas exist within a specific project.
|
||||
|
||||
### Goose Prompt
|
||||
### goose Prompt
|
||||
|
||||
```
|
||||
What tables do I have in my neon-auth-mcp-oauth project?
|
||||
```
|
||||
|
||||
### Goose Output
|
||||
### goose Output
|
||||
|
||||
```
|
||||
In your neon-auth-mcp-oauth project, there is one table:
|
||||
@@ -182,13 +184,13 @@ users_sync in the neon_auth schema
|
||||
|
||||
Run queries against your database tables to retrieve and analyze your data.
|
||||
|
||||
### Goose Prompt
|
||||
### goose Prompt
|
||||
|
||||
```
|
||||
Count the rows in the users_sync table.
|
||||
```
|
||||
|
||||
### Goose Output
|
||||
### goose Output
|
||||
|
||||
```
|
||||
I'll count the rows in the neon_auth.users_sync table using a COUNT query.
|
||||
|
||||
Reference in New Issue
Block a user