clerk.get_development_api_keys
Return the Publishable Key and Secret Key for a connected development Clerk instance so the agent can configure a local app env (NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY and CLERK_SECRET_KEY).
Sensitive — the returned Secret Key is a high-privilege credential; do not log or expose it.
Development only. Production connections are refused.
Call clerk.get_connected_accounts first. Pass clerk_instance_id to target a specific connection, or omit it to use the default account.
If the connection was created before Publishable Keys were stored, ask the user to reconnect the Clerk application at https://vee3.io/dashboard/connections.
Cost = 5 tokens.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| clerk_instance_id | No | Clerk instance id (ins_...) from clerk.get_connected_accounts. Omit to use the default connected account. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| secret_key | No | Clerk Secret Key (sk_test_...). Treat as high-privilege — do not log. | |
| publishable_key | No | Clerk Publishable Key (pk_test_...). Safe for frontend env vars; do not treat as a secret equivalent to the Secret Key. | |
| environment_type | No | Always "development" when this capability succeeds. | |
| clerk_instance_id | No | Clerk instance id (ins_...) for the connected development app. |