Codacy
codacyCodacy is an automated code review tool that helps developers monitor code quality, track technical debt, and enforce coding standards across multiple programming languages.
Acciones disponibles (6)
Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.
Create API TokenCODACY_CREATE_API_TOKENAcciónTool to create a new api token for the authenticated user's account. use after authenticating when you need to generate a fresh token for integrations.
CODACY_CREATE_API_TOKENAcciónTool to create a new api token for the authenticated user's account. use after authenticating when you need to generate a fresh token for integrations.
Parámetros de entrada
namestringObligatorioName for the new API token.
scopestringObligatorioScope of the token, e.g., 'api', 'read', 'write'.
descriptionstringOptional human-readable description of the token.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete API TokenCODACY_DELETE_API_TOKENAcciónTool to delete a specific api token from the authenticated user's account. use after confirming the token id.
CODACY_DELETE_API_TOKENAcciónTool to delete a specific api token from the authenticated user's account. use after confirming the token id.
Parámetros de entrada
tokenIdstringObligatorioThe ID of the API token to delete.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Account DetailsCODACY_GET_ACCOUNT_DETAILSAcciónTool to retrieve details of the authenticated user's account. use when confirming authentication before user-level operations.
CODACY_GET_ACCOUNT_DETAILSAcciónTool to retrieve details of the authenticated user's account. use when confirming authentication before user-level operations.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Organization RepositoriesCODACY_GET_ORGANIZATION_REPOSITORIESAcciónTool to list all repositories under a specific organization and provider. use when you need to enumerate organization-scoped repositories.
CODACY_GET_ORGANIZATION_REPOSITORIESAcciónTool to list all repositories under a specific organization and provider. use when you need to enumerate organization-scoped repositories.
Parámetros de entrada
pageintegerPage number for pagination, must be >= 1.
searchstringSearch term to filter repositories by name.
perPageintegerNumber of items per page, must be between 1 and 100.
organizationNamestringObligatorioName of the organization.
organizationProviderstringObligatorioProvider of the organization (e.g., 'github', 'gitlab').
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get User OrganizationsCODACY_GET_USER_ORGANIZATIONSAcciónTool to list all organizations the authenticated user belongs to. use after authenticating and need to discover accessible organizations.
CODACY_GET_USER_ORGANIZATIONSAcciónTool to list all organizations the authenticated user belongs to. use after authenticating and need to discover accessible organizations.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List ProjectsCODACY_LIST_PROJECTSAcciónTool to list all projects accessible to the authenticated user. use when you need a list of repositories after confirming api token validity.
CODACY_LIST_PROJECTSAcciónTool to list all projects accessible to the authenticated user. use when you need a list of repositories after confirming api token validity.
Parámetros de entrada
pageintegerPage number for pagination, must be >= 1.
searchstringFilter projects by matching project name.
perPageintegerNumber of items per page, must be between 1 and 100.
organizationNamestringFilter by organization name.
organizationProviderstringFilter by organization provider (e.g., 'github', 'gitlab').
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not