neon-api-organizations

neon-api-organizations is a cursor rule for coding agents from neondatabase/ai-rules. It costs 0 tokens per session (1,804 once invoked), scanned A, original, MIT.

A set of rules for managing Neon organizations. An organization is a shared Neon account where multiple people can collaborate on projects and resources.

In plain words
What is it for?
Automating organization administration, including retrieving organization details, listing members, and working with member or key records.
Why use it?
It documents how to inspect organizations, members, invitations, and organization-level API keys through the Neon API.

Cursor rule

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/neondatabase/ai-rules/neon-api-organizations
Clone the repo
git clone --depth 1 https://github.com/neondatabase/ai-rules

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for neon-api-organizations

README.md
[![agentmods](https://agentmods.dev/badge/rules/neondatabase/ai-rules/neon-api-organizations.svg)](https://agentmods.dev/rules/neondatabase/ai-rules/neon-api-organizations)
Your own site
<a href="https://agentmods.dev/rules/neondatabase/ai-rules/neon-api-organizations"><img src="https://agentmods.dev/badge/rules/neondatabase/ai-rules/neon-api-organizations.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 1,804 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.01804
Opus 5 $0.00000 $0.00902
Sonnet 5 $0.00000 $0.00361
Haiku 4.5 $0.00000 $0.00180

Measured 5d ago against content hash a78ee9edf4bf, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

neon-api-organizations scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl 'https://console.neon.tech/api/v2/organizations/{org_id}' \
neon-api-organizations.mdc · 204 lines

How it starts

The opening of the file, as written. The whole thing — 204 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Overview

This section provides rules for managing organizations, their members, invitations, and organization API keys. Organizations allow multiple users to collaborate on projects and share resources within Neon.

Manage organizations

Retrieve organization details

  1. Action: Retrieves detailed information about a specific organization.
  2. Endpoint: GET /organizations/{org_id}
  3. Path Parameters:
    • org_id (string, required): The unique identifier of the organization.

Example Request:

curl 'https://console.neon.tech/api/v2/organizations/{org_id}' \
  -H 'Accept: application/json' \
  -H "Authorization: Bearer $NEON_API_KEY"

List organization members

  1. Action: Retrieves a list of all members belonging to the specified organization.
  2. Endpoint: GET /organizations/{org_id}/members
  3. Path Parameters:
    • org_id (string, required): The unique identifier of the organization.

Example Request:

curl 'https://console.neon.tech/api/v2/organizations/{org_id}/members' \
  -H 'Accept: application/json' \
  -H "Authorization: Bearer $NEON_API_KEY"

Retrieve organization member details

  1. Action: Retrieves information about a specific member of an organization.
  2. Endpoint: GET /organizations/{org_id}/members/{member_id}
  3. Path Parameters:
    • org_id (string, required): The unique identifier of the organization.
    • member_id (UUID, required): The unique identifier of the organization member.

Example Request:

curl 'https://console.neon.tech/api/v2/organizations/{org_id}/members/{member_id}' \
  -H 'Accept: application/json' \
  -H "Authorization: Bearer $NEON_API_KEY"

Update role for organization member

  1. Action: Updates the role of a specified member within an organization.
  2. Prerequisite: This action can only be performed by an organization admin.
  3. Endpoint: PATCH /organizations/{org_id}/members/{member_id}
  4. Path Parameters:
    • org_id (string, required): The unique identifier of the organization.
    • member_id (UUID, required): The unique identifier of the organization member.
  5. Body Parameters:
    • role (string, required): The new role for the member. Allowed values: admin, member.

Read the full file on GitHub · 204 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 204 lines · 0 tokens per session scan A a78ee9edf4bf

Subscribe to this mod's changes

neon-api-organizations is a cursor rule published in the GitHub repository neondatabase/ai-rules (86 stars, last pushed 3mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,804 tokens. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.