Claude setup

Configure Anthropic Claude to interact with AWF Cloud workspaces.

coming soonDynamic client registration for Claude is not yet available in production. Use API key authentication as a fallback until DCR is enabled.

MCP integration

Add AWF Cloud as an MCP server in your Claude Code configuration (.mcp.json):

{
  "mcpServers": {
    "awf-cloud": {
      "type": "http",
      "url": "<api-base-url>/v1/orgs/{org_id}/projects/{project_id}/mcp",
      "headers": {
        "Authorization": "Bearer <your-api-key>"
      }
    }
  }
}

Replace {org_id} and {project_id} with your organization and project identifiers.

Claude Desktop only supports stdio MCP servers. Use mcp-remote as a bridge in your claude_desktop_config.json:

{
  "mcpServers": {
    "awf-cloud": {
      "command": "npx",
      "args": [
        "-y", "mcp-remote",
        "<api-base-url>/v1/orgs/{org_id}/projects/{project_id}/mcp",
        "--header", "Authorization: Bearer <your-api-key>"
      ]
    }
  }
}

REST integration

Use the AWF Cloud REST API directly from Claude by configuring tool definitions or prompt templates that call the API with appropriate headers.

API key setup

  1. Navigate to the Account page in the AWF Cloud console.
  2. Select the API Keys tab and create a new key with mcp:read and at least one domain read scope (e.g. workspace:read) to expose MCP tools.
  3. Copy the key value — it is shown only once and cannot be recovered.
  4. Add the key to your Claude configuration as a Bearer token.

Other providers

The following providers are not yet supported:

ollamagrokcursorgemini