skills/list-available-models/SKILL.md
# List Available Models List all available Claude models accessible via the API. More recently released models are listed first. ## API Details - **API**: Anthropic Models API - **Method**: GET - **Path**: `/v1/models` - **Operation ID**: `listModels` - **OpenAPI**: [anthropic-models-api-openapi.yml](../../openapi/anthropic-models-api-openapi.yml) ## Sandbox Mock server URL: `http://localhost:8080/rest/anthropic-models-api/2025-03-05/v1/models` ## Required Headers - `anthropic-version: 20
npx skillsauth add naftiko/anthropic-sandbox skills/list-available-modelsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
List all available Claude models accessible via the API. More recently released models are listed first.
/v1/modelslistModelsMock server URL: http://localhost:8080/rest/anthropic-models-api/2025-03-05/v1/models
anthropic-version: 2023-06-01x-api-key: {api-key}| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| limit | integer | No | Items per page (1-1000, default 20) |
| before_id | string | No | Cursor for previous page |
| after_id | string | No | Cursor for next page |
curl -X GET "http://localhost:8080/rest/anthropic-models-api/2025-03-05/v1/models" \
-H "anthropic-version: 2023-06-01" \
-H "x-api-key: your-api-key"
{
"data": [
{
"id": "claude-sonnet-4-20250514",
"type": "model",
"display_name": "Claude Sonnet 4",
"created_at": "2025-05-14T00:00:00Z"
},
{
"id": "claude-3-5-sonnet-20241022",
"type": "model",
"display_name": "Claude 3.5 Sonnet",
"created_at": "2024-10-22T00:00:00Z"
}
],
"first_id": "claude-sonnet-4-20250514",
"has_more": true,
"last_id": "claude-3-haiku-20240307"
}
When the user asks to list available models or discover what Claude models they can use, use this operation by making a GET request to /v1/models. Return the list of model IDs and display names.
development
# Update Workspace Update the name or display color of an existing workspace. ## API Details - **API**: Anthropic Administrative API - **Method**: POST - **Path**: `/organizations/workspaces/{workspace_id}` - **Operation ID**: `updateWorkspace` - **OpenAPI**: [anthropic-admin-api-openapi.yml](../../openapi/anthropic-admin-api-openapi.yml) ## Sandbox Mock server URL: `http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/workspaces/{workspace_id}` ## Required Headers - `anthro
development
# Update Workspace Member Update the workspace role of a specific member within a workspace. ## API Details - **API**: Anthropic Administrative API - **Method**: POST - **Path**: `/organizations/workspaces/{workspace_id}/members/{user_id}` - **Operation ID**: `updateWorkspaceMember` - **OpenAPI**: [anthropic-admin-api-openapi.yml](../../openapi/anthropic-admin-api-openapi.yml) ## Sandbox Mock server URL: `http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/workspaces/{workspa
development
# Update Organization Member Update the role or other attributes of a specific user within the organization. ## API Details - **API**: Anthropic Administrative API - **Method**: POST - **Path**: `/organizations/users/{user_id}` - **Operation ID**: `updateOrganizationMember` - **OpenAPI**: [anthropic-admin-api-openapi.yml](../../openapi/anthropic-admin-api-openapi.yml) ## Sandbox Mock server URL: `http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/users/{user_id}` ## Require
development
# Update API Key Update the name or status of an existing API key. Can be used to activate or deactivate a key. ## API Details - **API**: Anthropic Administrative API - **Method**: POST - **Path**: `/organizations/api_keys/{api_key_id}` - **Operation ID**: `updateApiKey` - **OpenAPI**: [anthropic-admin-api-openapi.yml](../../openapi/anthropic-admin-api-openapi.yml) ## Sandbox Mock server URL: `http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/api_keys/{api_key_id}` ## Requ