Neon / warm
Create Anonymized Branch
Create a masked copy of branch data using PostgreSQL Anonymizer. Beta feature; useful for safe prod-like research branches.
Quick Start
aweb inspect neon.create_anonymized_branch
aweb add neon
aweb plan "use Neon create anonymized branch in an agent workflow"import Aweb, { Agent } from '@aweb/sdk';
const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });
const agent = new Agent({ tools: aweb.tools });
agent.add('neon');
const plan = await agent.plan('Use Neon for this workflow');
const tool = await aweb.tools.inspect('neon.create_anonymized_branch');
console.log(plan.nextAction);
console.log(tool.inputSchema);Tool Card
Tool idneon.create_anonymized_branch
ProviderNeon (neon)
Tool namecreate_anonymized_branch
Activationwarm
Healthhealthy
Trust score1.00
Transportstreamable_http
Latencynot yet measured
Cost0
Requirements and Governance
Authapi_key
Credentialsetup_required
Workspaceglobal
Approvalnone
RiskREAD
Permissionsread
Credential setup/api/mcp-warehouse/credentials/neon/init
Schemas
{
"type": "object",
"properties": {
"project_id": {
"type": "string"
},
"project_alias": {
"type": "string"
},
"name": {
"type": "string"
},
"parent_branch_id": {
"type": "string"
},
"parent_branch_name": {
"type": "string"
},
"protected": {
"type": "boolean"
},
"endpoint_type": {
"type": "string",
"enum": [
"read_write",
"read_only"
]
},
"autoscaling_limit_min_cu": {
"type": "number"
},
"autoscaling_limit_max_cu": {
"type": "number"
},
"suspend_timeout_seconds": {
"type": "integer"
},
"masking_rules": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
},
"start_anonymization": {
"type": "boolean"
}
},
"additionalProperties": false
}Examples
[
{
"objective": "Use Neon create anonymized branch in an agent workflow.",
"args": {
"project_id": "<project_id>",
"project_alias": "<project_alias>",
"name": "<name>",
"parent_branch_id": "<parent_branch_id>"
}
}
]