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
3 changes: 3 additions & 0 deletions docs/tools/community.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ description: 'AgentStack tools from community contributors'

- [Mem0](/tools/tool/mem0)

## Database Tools
- [Neon](/tools/tool/neon)

## Code Execution

- [Open Interpreter](/tools/tool/open-interpreter)
Expand Down
55 changes: 55 additions & 0 deletions docs/tools/tool/neon.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
---
title: Neon
description: Postgres for agents
---
## Description
Neon is a serverless Postgres platform that lets your agents create and manage databases on demand. It supports ephemeral or long-lived Postgres instances for storing structured data.

## Prerequisites
1. A Neon account. If you do not have one, sign up at [Neon](https://neon.tech).
2. Get your API key from the [Neon Console](https://console.neon.tech/app/settings/api-keys).
3. The tool will automatically install required dependencies:
- neon-api
- psycopg2-binary

## Installation

```bash
agentstack tools add neon
```

## Configuration
```bash
NEON_API_KEY=...
```

## Available Actions
The following actions are automatically included when you add the Neon tool to your agent:

1. **`create_database`**
Creates a new Neon project and returns a connection URI. Default settings create a database called `neondb` with the `neondb_owner` role.

<Note>The agent's response to errors will depend on its reasoning about the specific situation. It may retry a failed action, but this behavior is probabilistic rather than deterministic.</Note>

2. **`execute_sql_ddl`**
Run schema commands (e.g., `CREATE TABLE`) using a connection URI and SQL command. Transactions are automatically handled.

3. **`run_sql_query`**
Run data queries (e.g., `SELECT`, `INSERT`) using a connection URI and SQL query. Results are returned as formatted strings.

## Using the Tool
Add the Neon tool to your agent:
```python
@agent
def db_writer(self) -> Agent:
return Agent(
config=self.agents_config['db_writer'],
tools=[*agentstack.tools['neon']], # Includes all Neon actions listed above
verbose=True,
)
```

For a complete example, see `AgentStack/examples/web_researcher` where an agent stores collected data in Postgres as part of a multi-agent workflow.

## Usage Note
When you add the Neon tool to an existing project, all its tools will be added to every agent in the `agents.yaml` file. You may need to remove unused tools to keep each agent's scope clear.