Neon / warm

Add Jwks Url

Add a project-level JWKS URL for JWT verification, optionally scoped to a branch and audience.

Quick Start

aweb inspect neon.add_jwks_url
aweb add neon
aweb plan "use Neon add jwks url 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.add_jwks_url');

console.log(plan.nextAction);
console.log(tool.inputSchema);

Tool Card

Tool idneon.add_jwks_url
ProviderNeon (neon)
Tool nameadd_jwks_url
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"
    },
    "branch_id": {
      "type": "string"
    },
    "branch_name": {
      "type": "string"
    },
    "jwks_url": {
      "type": "string"
    },
    "provider_name": {
      "type": "string"
    },
    "jwt_audience": {
      "type": "string"
    },
    "role_names": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "skip_role_creation": {
      "type": "boolean"
    }
  },
  "required": [
    "jwks_url",
    "provider_name"
  ],
  "additionalProperties": false
}

Examples

[
  {
    "objective": "Use Neon add jwks url in an agent workflow.",
    "args": {
      "project_id": "<project_id>",
      "project_alias": "<project_alias>",
      "branch_id": "<branch_id>",
      "branch_name": "<branch_name>"
    }
  }
]
Back to MCP Tool Cards