Antimetal · OAuth Scopes

Antimetal OAuth Scopes

OAuth 2.0 searched

Antimetal publishes 4 OAuth 2.0 scopes via the authorizationCode, deviceCode, and refreshToken flows. Scopes are the fine-grained permissions an application requests at authorization time to act against the Antimetal API on a user’s behalf.

Tokens are issued from https://antimetal.authkit.app/oauth2/token.

This index is generated from the provider’s OpenAPI security definitions (and, where available, its documented scope reference) and refreshes on every APIs.io network build. Browse every provider’s scopes at scopes.apis.io.

CompanyObservabilityIncident ManagementSite Reliability EngineeringArtificial IntelligenceAgentsDevOpsCloud InfrastructureKubernetesRoot Cause AnalysisMCP
Scopes: 4 Flows: authorizationCode, deviceCode, refreshToken Method: searched

OAuth endpoints

Authorization URL
https://antimetal.authkit.app/oauth2/authorize
Token URL
https://antimetal.authkit.app/oauth2/token
Flows
authorizationCodedeviceCoderefreshToken

Scopes (4)

ScopeDescriptionFlows
openid OpenID Connect authentication; issues an ID token identifying the user. authorizationCode, deviceCode
profile Basic profile claims for the authenticated user. authorizationCode, deviceCode
email Email address claim for the authenticated user. authorizationCode, deviceCode
offline_access Issues a refresh token so the client can act after the access token expires. authorizationCode, deviceCode

Source

OAuth Scopes

Raw ↑
generated: '2026-08-06'
method: searched
source: https://mcp.antimetal.com/.well-known/oauth-authorization-server
docs: https://docs.antimetal.com/connect
applies_to: mcp/antimetal-mcp.yml
note: The Antimetal External REST API uses bearer API keys only and declares no oauth2
  security scheme, so derive-oauth-scopes.py found nothing in openapi/. The OAuth surface
  belongs to the remote MCP server, whose RFC 8414 authorization-server metadata is
  anonymously readable and is the source below.
schemes:
- name: mcp-oauth2
  source: https://mcp.antimetal.com/.well-known/oauth-authorization-server
  issuer: https://antimetal.authkit.app
  provider: WorkOS AuthKit
  flows:
  - flow: authorizationCode
    authorizationUrl: https://antimetal.authkit.app/oauth2/authorize
    tokenUrl: https://antimetal.authkit.app/oauth2/token
    pkce: [S256]
  - flow: deviceCode
    deviceAuthorizationUrl: https://antimetal.authkit.app/oauth2/device_authorization
    tokenUrl: https://antimetal.authkit.app/oauth2/token
  - flow: refreshToken
    tokenUrl: https://antimetal.authkit.app/oauth2/token
  endpoints:
    jwks_uri: https://antimetal.authkit.app/oauth2/jwks
    introspection_endpoint: https://antimetal.authkit.app/oauth2/introspection
    registration_endpoint: https://antimetal.authkit.app/oauth2/register
  token_endpoint_auth_methods_supported: [none, client_secret_post, client_secret_basic]
  protected_resource: https://mcp.antimetal.com
scopes:
- scope: openid
  description: OpenID Connect authentication; issues an ID token identifying the user.
  flows: [authorizationCode, deviceCode]
- scope: profile
  description: Basic profile claims for the authenticated user.
  flows: [authorizationCode, deviceCode]
- scope: email
  description: Email address claim for the authenticated user.
  flows: [authorizationCode, deviceCode]
- scope: offline_access
  description: Issues a refresh token so the client can act after the access token
    expires.
  flows: [authorizationCode, deviceCode]
gaps:
- The advertised scopes are the standard OIDC identity set only. Antimetal publishes
  no resource-level or tool-level scopes (no read/write separation across issues, artifacts
  or query), so an MCP token is not scoped to a subset of the tool surface.